Filters Droplets by states, app_guids
GET /v3/apps/:guid/droplets
Request
Route
GET /v3/apps/guid-b6440218-39ac-490d-94ee-a9a90ca9e87a/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-b6440218-39ac-490d-94ee-a9a90ca9e87a/droplets?states=STAGED%2CFAILED&page=1&per_page=2&order_by=-created_at" -X GET \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTk4IiwiZW1haWwiOiJlbWFpbC05N0Bzb21lZG9tYWluLmNvbSIsInNjb3BlIjpbImNsb3VkX2NvbnRyb2xsZXIucmVhZCIsImNsb3VkX2NvbnRyb2xsZXIud3JpdGUiXSwiYXVkIjpbImNsb3VkX2NvbnRyb2xsZXIiXSwiZXhwIjoxNDU2NDUyMjI5fQ.ZZkRe0X0ekx3kkuOYsePA2CooS5P9SVh4jxVtAs2yfw" \
-H "Host: example.org" \
-H "Cookie: "
Response
Status
200 OK
Body
{
"pagination": {
"total_results": 2,
"first": {
"href": "/v3/apps/guid-b6440218-39ac-490d-94ee-a9a90ca9e87a/droplets?order_by=-created_at&page=1&per_page=2&states=STAGED%2CFAILED"
},
"last": {
"href": "/v3/apps/guid-b6440218-39ac-490d-94ee-a9a90ca9e87a/droplets?order_by=-created_at&page=1&per_page=2&states=STAGED%2CFAILED"
},
"next": null,
"previous": null
},
"resources": [
{
"guid": "guid-1c568755-09f8-4022-8bf9-5c2208b459ba",
"state": "FAILED",
"error": null,
"lifecycle": {
"type": "buildpack",
"data": {
"buildpack": "name-690",
"stack": "name-691"
}
},
"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": "2016-02-19T02:03:49Z",
"links": {
"self": {
"href": "/v3/droplets/guid-1c568755-09f8-4022-8bf9-5c2208b459ba"
},
"package": {
"href": "/v3/packages/guid-55c20aa7-6c42-41b9-8ef1-ff104edc25ab"
},
"app": {
"href": "/v3/apps/guid-b6440218-39ac-490d-94ee-a9a90ca9e87a"
},
"assign_current_droplet": {
"href": "/v3/apps/guid-b6440218-39ac-490d-94ee-a9a90ca9e87a/current_droplet",
"method": "PUT"
}
}
},
{
"guid": "guid-afc8ca63-e970-45a2-bad1-623d20778a9a",
"state": "STAGED",
"error": null,
"lifecycle": {
"type": "buildpack",
"data": {
"buildpack": "name-686",
"stack": "name-687"
}
},
"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": "2016-02-19T02:03:49Z",
"links": {
"self": {
"href": "/v3/droplets/guid-afc8ca63-e970-45a2-bad1-623d20778a9a"
},
"package": {
"href": "/v3/packages/guid-55c20aa7-6c42-41b9-8ef1-ff104edc25ab"
},
"app": {
"href": "/v3/apps/guid-b6440218-39ac-490d-94ee-a9a90ca9e87a"
},
"assign_current_droplet": {
"href": "/v3/apps/guid-b6440218-39ac-490d-94ee-a9a90ca9e87a/current_droplet",
"method": "PUT"
}
}
}
]
}
Headers