Retrieve a Particular App
GET /v2/apps/:guid
Request
Route
GET /v2/apps/27d40ae4-983b-4696-90ff-8d4d814ddab2
Parameters
Name |
Description |
Valid Values |
Example Values |
guid
|
The guid of the App
|
|
|
Body
Name |
Description |
Default |
Valid Values |
Example Values |
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. To ensure optimal availability, ensure there are at least 2 instances.
|
|
|
|
disk_quota
|
The maximum amount of disk available to an instance of an app. In megabytes.
|
|
|
|
space_guid
|
The guid of the associated space.
|
|
|
- guid-0a15a3d0-05be-4dc9-954e-44758c76320c
|
stack_guid
|
The guid of the associated stack.
|
Uses the default system stack.
|
|
|
state
|
The current desired state of the app. One of STOPPED or STARTED.
|
STOPPED
|
|
|
detected_start_command
|
The command detected by the buildpack during staging.
|
|
|
|
command
|
The command to start an app after it is staged, maximum length: 4096 (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.
|
|
|
- https://github.com/virtualstaticvoid/heroku-buildpack-r.git
- an_example_installed_buildpack
|
health_check_type
|
Type of health check to perform.
|
port
|
|
|
health_check_timeout
|
Timeout for health checking of an staged app when starting up
|
|
|
|
diego
|
Use diego to stage and to run when available
|
false
|
|
|
docker_image
|
Name of the Docker image containing the app
|
|
|
- cloudfoundry/helloworld
- registry.example.com:5000/user/repository/tag
|
environment_json
|
Key/value pairs of all the environment variables to run in your app. Does not include any system or service variables.
|
|
|
|
production
|
Deprecated.
|
true
|
|
|
console
|
Open the console port for the app (at $CONSOLE_PORT).
|
false
|
|
|
debug
|
Open the debug port for the app (at $DEBUG_PORT).
|
false
|
|
|
Headers
cURL
curl "https://api.[your-domain.com]/v2/apps/27d40ae4-983b-4696-90ff-8d4d814ddab2" -X GET \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTMzMSIsImVtYWlsIjoiZW1haWwtMjMzQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MjU5NDg2NzV9.QjxMgwOHY3G2ZMbXmMw5uxZMnd3wUclOYAVIYMpjijU" \
-H "Host: example.org" \
-H "Cookie: "
Response
Status
200 OK
Body
{
"metadata": {
"guid": "27d40ae4-983b-4696-90ff-8d4d814ddab2",
"url": "/v2/apps/27d40ae4-983b-4696-90ff-8d4d814ddab2",
"created_at": "2015-03-03T00:51:15Z",
"updated_at": "2015-03-03T00:51:15Z"
},
"entity": {
"name": "name-1759",
"production": false,
"space_guid": "cb513806-693f-4b63-af93-7a63d2a90903",
"stack_guid": "6d5b1447-a6d2-4b84-9468-3b9754206100",
"buildpack": null,
"detected_buildpack": null,
"environment_json": null,
"memory": 1024,
"instances": 1,
"disk_quota": 1024,
"state": "STOPPED",
"version": "59ad07e0-bb52-42a7-b6b7-3247cc84cdac",
"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,
"diego": false,
"docker_image": null,
"package_updated_at": "2015-03-03T00:51:15Z",
"detected_start_command": "",
"space_url": "/v2/spaces/cb513806-693f-4b63-af93-7a63d2a90903",
"stack_url": "/v2/stacks/6d5b1447-a6d2-4b84-9468-3b9754206100",
"events_url": "/v2/apps/27d40ae4-983b-4696-90ff-8d4d814ddab2/events",
"service_bindings_url": "/v2/apps/27d40ae4-983b-4696-90ff-8d4d814ddab2/service_bindings",
"routes_url": "/v2/apps/27d40ae4-983b-4696-90ff-8d4d814ddab2/routes"
}
}
Headers