Home
Version 3
Droplets (Experimental) API

Droplets (Experimental) API

List all Droplets

GET /v3/droplets

Request

Route

GET /v3/droplets?page=1&per_page=2&order_by=-created_at

Parameters

Name Description Valid Values Example Values
app_guids Apps to filter by
  • app guids
  • app_guids=app_guid1,app_guid2
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.eyJ1c2VyX2lkIjoidWFhLWlkLTI2MCIsImVtYWlsIjoiZW1haWwtMTkxQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5yZWFkIiwiY2xvdWRfY29udHJvbGxlci53cml0ZSJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NTY0NTIyMzh9.vuiTcSZcnpPE696598wKCj7Sia-CDAxwTWxwVItiYi4
Host: example.org
Cookie: 

cURL

curl "https://api.[your-domain.com]/v3/droplets?page=1&per_page=2&order_by=-created_at" -X GET \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTI2MCIsImVtYWlsIjoiZW1haWwtMTkxQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5yZWFkIiwiY2xvdWRfY29udHJvbGxlci53cml0ZSJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NTY0NTIyMzh9.vuiTcSZcnpPE696598wKCj7Sia-CDAxwTWxwVItiYi4" \
	-H "Host: example.org" \
	-H "Cookie: "

Response

Status

200 OK

Body

{
  "pagination": {
    "total_results": 2,
    "first": {
      "href": "/v3/droplets?order_by=-created_at&page=1&per_page=2"
    },
    "last": {
      "href": "/v3/droplets?order_by=-created_at&page=1&per_page=2"
    },
    "next": null,
    "previous": null
  },
  "resources": [
    {
      "guid": "guid-c77b1f10-7bd2-4772-b342-65745611030b",
      "state": "STAGED",
      "error": null,
      "lifecycle": {
        "type": "buildpack",
        "data": {
          "buildpack": "name-2148",
          "stack": "name-2149"
        }
      },
      "memory_limit": 123,
      "disk_limit": 456,
      "result": {
        "execution_metadata": "black-box-secrets",
        "process_types": {
          "web": "started"
        },
        "hash": {
          "type": "sha1",
          "value": "my-hash"
        },
        "buildpack": "https://github.com/cloudfoundry/detected-buildpack.git",
        "stack": null
      },
      "environment_variables": {

      },
      "created_at": "1970-01-01T00:00:02Z",
      "updated_at": "2016-02-19T02:03:58Z",
      "links": {
        "self": {
          "href": "/v3/droplets/guid-c77b1f10-7bd2-4772-b342-65745611030b"
        },
        "package": {
          "href": "/v3/packages/guid-0d077238-3abe-44c8-a91b-b5fca3db6e55"
        },
        "app": {
          "href": "/v3/apps/guid-681a0359-a59b-49f0-bdbb-c97dcab7eddd"
        },
        "assign_current_droplet": {
          "href": "/v3/apps/guid-681a0359-a59b-49f0-bdbb-c97dcab7eddd/current_droplet",
          "method": "PUT"
        }
      }
    },
    {
      "guid": "guid-8482694a-2fbe-42a2-9bd3-70e962dcebdf",
      "state": "STAGING",
      "error": null,
      "lifecycle": {
        "type": "buildpack",
        "data": {
          "buildpack": "name-2150",
          "stack": "name-2151"
        }
      },
      "memory_limit": null,
      "disk_limit": null,
      "result": null,
      "environment_variables": {
        "yuu": "huuu"
      },
      "created_at": "1970-01-01T00:00:01Z",
      "updated_at": "2016-02-19T02:03:58Z",
      "links": {
        "self": {
          "href": "/v3/droplets/guid-8482694a-2fbe-42a2-9bd3-70e962dcebdf"
        },
        "package": {
          "href": "/v3/packages/guid-0d077238-3abe-44c8-a91b-b5fca3db6e55"
        },
        "app": {
          "href": "/v3/apps/guid-681a0359-a59b-49f0-bdbb-c97dcab7eddd"
        },
        "assign_current_droplet": {
          "href": "/v3/apps/guid-681a0359-a59b-49f0-bdbb-c97dcab7eddd/current_droplet",
          "method": "PUT"
        },
        "buildpack": {
          "href": "/v2/buildpacks/f04c01ee-4c97-4621-b40b-7d7cccd8ffd6"
        }
      }
    }
  ]
}

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.013873
Content-Length: 2668