Filters Droplets by states, app_guids
GET /v3/apps/:guid/droplets
Request
Route
GET /v3/apps/guid-6622b1b8-2e47-4447-8146-073732a08e9a/droplets?states=STAGED%2CFAILED&page=1&per_page=2&order_by=-created_at
Parameters
Name |
Description |
Valid Values |
Example Values |
states
|
Droplet state to filter by
|
- PENDING
- STAGING
- STAGED
- FAILED
- EXPIRED
|
|
page
|
Page to display
|
|
|
per_page
|
Number of results per page
|
|
|
order_by
|
Value to sort by. Prepend with "+" or "-" to change sort direction to ascending or descending, respectively.
|
|
|
states: STAGED,FAILED
page: 1
per_page: 2
order_by: -created_at
Headers
cURL
curl "https://api.[your-domain.com]/v3/apps/guid-6622b1b8-2e47-4447-8146-073732a08e9a/droplets?states=STAGED%2CFAILED&page=1&per_page=2&order_by=-created_at" -X GET \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTc4IiwiZW1haWwiOiJlbWFpbC00NkBzb21lZG9tYWluLmNvbSIsInNjb3BlIjpbImNsb3VkX2NvbnRyb2xsZXIucmVhZCIsImNsb3VkX2NvbnRyb2xsZXIud3JpdGUiXSwiYXVkIjpbImNsb3VkX2NvbnRyb2xsZXIiXSwiZXhwIjoxNDUxNDEzNjc5fQ.D-D_cu37e4ad33uFL5gK4QlksFX4vQfJA-5cdwmpOLQ" \
-H "Host: example.org" \
-H "Cookie: "
Response
Status
200 OK
Body
{
"pagination": {
"total_results": 2,
"first": {
"href": "/v3/apps/guid-6622b1b8-2e47-4447-8146-073732a08e9a/droplets?order_by=-created_at&page=1&per_page=2&states=STAGED%2CFAILED"
},
"last": {
"href": "/v3/apps/guid-6622b1b8-2e47-4447-8146-073732a08e9a/droplets?order_by=-created_at&page=1&per_page=2&states=STAGED%2CFAILED"
},
"next": null,
"previous": null
},
"resources": [
{
"guid": "guid-1c2b5235-2952-42a4-ad38-21fd00ad9de4",
"state": "FAILED",
"error": null,
"lifecycle": {
"type": "buildpack",
"data": {
"buildpack": "name-252",
"stack": "name-253"
}
},
"memory_limit": null,
"disk_limit": null,
"result": {
"execution_metadata": null,
"process_types": null,
"hash": {
"type": "sha1",
"value": "my-hash"
},
"buildpack": "https://github.com/cloudfoundry/my-buildpack.git",
"stack": null
},
"environment_variables": {
},
"created_at": "1970-01-01T00:00:02Z",
"updated_at": "2015-12-22T18:27:59Z",
"links": {
"self": {
"href": "/v3/droplets/guid-1c2b5235-2952-42a4-ad38-21fd00ad9de4"
},
"package": {
"href": "/v3/packages/guid-c4ce2fa9-b22d-40b8-917d-394fbc5aca6e"
},
"app": {
"href": "/v3/apps/guid-6622b1b8-2e47-4447-8146-073732a08e9a"
},
"assign_current_droplet": {
"href": "/v3/apps/guid-6622b1b8-2e47-4447-8146-073732a08e9a/current_droplet",
"method": "PUT"
}
}
},
{
"guid": "guid-09396691-5ccc-46d2-8017-a01c3add8fa7",
"state": "STAGED",
"error": null,
"lifecycle": {
"type": "buildpack",
"data": {
"buildpack": "name-248",
"stack": "name-249"
}
},
"memory_limit": null,
"disk_limit": null,
"result": {
"execution_metadata": null,
"process_types": "{\"web\":\"started\"}",
"hash": {
"type": "sha1",
"value": "my-hash"
},
"buildpack": "https://github.com/cloudfoundry/my-buildpack.git",
"stack": null
},
"environment_variables": {
},
"created_at": "1970-01-01T00:00:02Z",
"updated_at": "2015-12-22T18:27:59Z",
"links": {
"self": {
"href": "/v3/droplets/guid-09396691-5ccc-46d2-8017-a01c3add8fa7"
},
"package": {
"href": "/v3/packages/guid-c4ce2fa9-b22d-40b8-917d-394fbc5aca6e"
},
"app": {
"href": "/v3/apps/guid-6622b1b8-2e47-4447-8146-073732a08e9a"
},
"assign_current_droplet": {
"href": "/v3/apps/guid-6622b1b8-2e47-4447-8146-073732a08e9a/current_droplet",
"method": "PUT"
}
}
}
]
}
Headers