Home
Version 3
Apps (Experimental) API

Apps (Experimental) API

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
  • states=PENDING,STAGING
page Page to display
  • >= 1
per_page Number of results per page
  • 1-5000
order_by Value to sort by. Prepend with "+" or "-" to change sort direction to ascending or descending, respectively.
  • created_at
  • updated_at
page: 1
per_page: 2
order_by: -created_at

Headers

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTc3IiwiZW1haWwiOiJlbWFpbC00NUBzb21lZG9tYWluLmNvbSIsInNjb3BlIjpbImNsb3VkX2NvbnRyb2xsZXIucmVhZCIsImNsb3VkX2NvbnRyb2xsZXIud3JpdGUiXSwiYXVkIjpbImNsb3VkX2NvbnRyb2xsZXIiXSwiZXhwIjoxNDUxNDEzNjc5fQ.slSLJHc3QeoosYL4Rr6S0-xO00qedJNAwwe_-81v9_A
Host: example.org
Cookie: 

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

X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
X-Content-Type-Options: nosniff
Content-Type: application/json; charset=utf-8
X-Runtime: 0.066959
Content-Length: 2724