List associated droplets
GET /v3/apps/:guid/droplets
Request
Route
GET /v3/apps/guid-5932e523-bec3-4544-8464-17ef745132ad/droplets?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.
|
|
|
page: 1
per_page: 2
order_by: -created_at
Headers
cURL
curl "https://api.[your-domain.com]/v3/apps/guid-5932e523-bec3-4544-8464-17ef745132ad/droplets?page=1&per_page=2&order_by=-created_at" -X GET \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTc3IiwiZW1haWwiOiJlbWFpbC00NUBzb21lZG9tYWluLmNvbSIsInNjb3BlIjpbImNsb3VkX2NvbnRyb2xsZXIucmVhZCIsImNsb3VkX2NvbnRyb2xsZXIud3JpdGUiXSwiYXVkIjpbImNsb3VkX2NvbnRyb2xsZXIiXSwiZXhwIjoxNDUxNDEzNjc5fQ.slSLJHc3QeoosYL4Rr6S0-xO00qedJNAwwe_-81v9_A" \
-H "Host: example.org" \
-H "Cookie: "
Response
Status
200 OK
Body
{
"pagination": {
"total_results": 2,
"first": {
"href": "/v3/apps/guid-5932e523-bec3-4544-8464-17ef745132ad/droplets?order_by=-created_at&page=1&per_page=2"
},
"last": {
"href": "/v3/apps/guid-5932e523-bec3-4544-8464-17ef745132ad/droplets?order_by=-created_at&page=1&per_page=2"
},
"next": null,
"previous": null
},
"resources": [
{
"guid": "guid-e387e205-11a5-4185-b1cb-9afa787d2da7",
"state": "STAGED",
"error": null,
"lifecycle": {
"type": "buildpack",
"data": {
"buildpack": "name-224",
"stack": "name-225"
}
},
"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-e387e205-11a5-4185-b1cb-9afa787d2da7"
},
"package": {
"href": "/v3/packages/guid-82798b28-7f77-4a11-a01b-6d9dac8011c7"
},
"app": {
"href": "/v3/apps/guid-5932e523-bec3-4544-8464-17ef745132ad"
},
"assign_current_droplet": {
"href": "/v3/apps/guid-5932e523-bec3-4544-8464-17ef745132ad/current_droplet",
"method": "PUT"
}
}
},
{
"guid": "guid-655e8757-6f7f-4745-9805-31ab98ba64c9",
"state": "STAGING",
"error": null,
"lifecycle": {
"type": "buildpack",
"data": {
"buildpack": "name-222",
"stack": "name-223"
}
},
"memory_limit": null,
"disk_limit": null,
"result": null,
"environment_variables": {
"yuu": "huuu"
},
"created_at": "1970-01-01T00:00:01Z",
"updated_at": "2015-12-22T18:27:59Z",
"links": {
"self": {
"href": "/v3/droplets/guid-655e8757-6f7f-4745-9805-31ab98ba64c9"
},
"package": {
"href": "/v3/packages/guid-82798b28-7f77-4a11-a01b-6d9dac8011c7"
},
"app": {
"href": "/v3/apps/guid-5932e523-bec3-4544-8464-17ef745132ad"
},
"assign_current_droplet": {
"href": "/v3/apps/guid-5932e523-bec3-4544-8464-17ef745132ad/current_droplet",
"method": "PUT"
},
"buildpack": {
"href": "/v2/buildpacks/dd0867c6-2878-46c6-a47e-f9919f51c8f4"
}
}
}
]
}
Headers