Home
Version 3
Apps API

Apps API

Get App summary

GET /v2/apps/:guid/summary

Request

Route

GET /v2/apps/f501634a-c6a8-44a7-aafc-88862ec727ba/summary

Body

Name Description Default Valid Values Example Values
guid The guid of the app for which summary is requested
name The name of the app.
memory The amount of memory each instance should have. In megabytes.
instances The number of instances of the app to run.
disk_quota The maximum amount of disk available to an instance of an app. In megabytes.
space_guid The guid of the associated space.
stack_guid The guid of the associated stack. Uses the default system stack.
state The current state of the app. One of STOPPED or STARTED. STOPPED
  • STOPPED
  • STARTED
command The command to start an app after it is staged (e.g. 'rails s -p $PORT' or 'java com.org.Server $PORT').
buildpack Buildpack to build the app. 3 options: a) Blank means autodetection; b) A Git Url pointing to a buildpack; c) Name of an installed buildpack.
health_check_timeout Timeout for health checking of an staged app when starting up
environment_json Key/value pairs of all the environment variables to run in your app. Does not include any system or service variables.
detected_buildpack The autodetected buildpack that staged the app.
detected_buildpack_guid The guid of the autodetected admin buildpack that staged the app.
production Deprecated. true
  • true
  • false
console Open the console port for the app (at $CONSOLE_PORT). false
  • true
  • false
debug Open the debug port for the app (at $DEBUG_PORT). false
  • true
  • false
package_state The current state of the package. One of PENDING, STAGED or FAILED.
  • PENDING
  • STAGED
  • FAILED
package_updated_at Time when the package was last updated
system_env_json environment_json for system variables, contains vcap_services by default, a hash containing key/value pairs of the names and information of the services associated with your app.
staging_task_id Staging task id
running_instances The number of instances of the app that are currently running.
available_domain List of available domains configured for the app
routes List of routes configured for the app
version Version guid of the app
services List of services that are bound to the app

Headers

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTM0OCIsImVtYWlsIjoiZW1haWwtMjM4QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0Mzg2NDE4MTB9.AjvpYY95bpnQsn63Uv0tHAp8kIh48V7QVS-P8z3h9FI
Host: example.org
Cookie: 

cURL

curl "https://api.[your-domain.com]/v2/apps/f501634a-c6a8-44a7-aafc-88862ec727ba/summary" -X GET \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTM0OCIsImVtYWlsIjoiZW1haWwtMjM4QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0Mzg2NDE4MTB9.AjvpYY95bpnQsn63Uv0tHAp8kIh48V7QVS-P8z3h9FI" \
	-H "Host: example.org" \
	-H "Cookie: "

Response

Status

200 OK

Body

{"guid":"f501634a-c6a8-44a7-aafc-88862ec727ba","name":"name-2124","routes":[{"guid":"7b0b080a-c567-48a3-acee-28a2c252e959","host":"host-18","domain":{"guid":"011461ec-476b-444d-a048-b0e2a3ff0f30","name":"domain-55.example.com"}}],"running_instances":0,"services":[{"guid":"b74ee576-9eb9-4e7e-8185-0c48db893d97","name":"name-2126","bound_app_count":1,"last_operation":null,"dashboard_url":null,"service_plan":{"guid":"192be526-c7c0-4899-aa2a-3aca7996ccb0","name":"name-2127","service":{"guid":"0e586250-a340-4924-8e2e-f13250f595ce","label":"label-75","provider":null,"version":null}}}],"available_domains":[{"guid":"011461ec-476b-444d-a048-b0e2a3ff0f30","name":"domain-55.example.com","owning_organization_guid":"aadb707d-bf3b-4a0e-8b22-c06aabad53c4"},{"guid":"7c4e943b-5e9b-44ac-85ce-fcff57134d3b","name":"customer-app-domain1.com"},{"guid":"1477a304-2af6-48d0-9e8f-6e2cdf06a9a2","name":"customer-app-domain2.com"}],"name":"name-2124","production":false,"space_guid":"3736ea8c-7ff0-44ba-8ed0-bd60971e8155","stack_guid":"21a9a6e8-127a-41ce-886a-0294d807c5e9","buildpack":null,"detected_buildpack":null,"environment_json":null,"memory":1024,"instances":1,"disk_quota":1024,"state":"STOPPED","version":"53188475-8b6c-4e13-b321-2955431b27de","command":null,"console":false,"debug":null,"staging_task_id":null,"package_state":"PENDING","health_check_type":"port","health_check_timeout":null,"staging_failed_reason":null,"staging_failed_description":null,"diego":false,"docker_image":null,"package_updated_at":"2015-07-27T22:43:29Z","detected_start_command":"","enable_ssh":true,"docker_credentials_json":{"redacted_message":"[PRIVATE DATA HIDDEN]"}}

Headers

Content-Type: application/json;charset=utf-8
X-VCAP-Request-ID: ae3dd62d-6411-47f0-aecf-b76341e6ba08
Content-Length: 1644
X-Content-Type-Options: nosniff