Home
Version 3
Buildpacks API

Buildpacks API

List all Buildpacks

GET /v2/buildpacks

Request

Route

GET /v2/buildpacks

Parameters

Name Description Valid Values Example Values
q Parameters used to filter the result set.
Format queries as <filter><op><value>
Valid ops: : >= <= < > IN
Valid filters: name
  • q=filter:value
  • q=filter>value
  • q=filter IN a,b,c
page Page of results to fetch
results-per-page Number of results per page
order-direction Order of the results: asc (default) or desc
inline-relations-depth 0 - don't inline any relations and return URLs. Otherwise, inline to depth N.
orphan-relations 0 - de-duplicate object entries in response
exclude-relations comma-delimited list of relations to drop from response
include-relations comma-delimited list of the only relations to include in response

Headers

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTIzOCIsImVtYWlsIjoiZW1haWwtMTU2QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MzY4Mjk3ODl9.keWx7CafRGqYtKJqMpHJu2337awnsEEeL3NqQsdkdIw
Host: example.org
Cookie: 

cURL

curl "https://api.[your-domain.com]/v2/buildpacks" -X GET \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTIzOCIsImVtYWlsIjoiZW1haWwtMTU2QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MzY4Mjk3ODl9.keWx7CafRGqYtKJqMpHJu2337awnsEEeL3NqQsdkdIw" \
	-H "Host: example.org" \
	-H "Cookie: "

Response

Status

200 OK

Body

{
  "total_results": 3,
  "total_pages": 1,
  "prev_url": null,
  "next_url": null,
  "resources": [
    {
      "metadata": {
        "guid": "7e311643-599d-4b8d-81e3-4a206288a619",
        "url": "/v2/buildpacks/7e311643-599d-4b8d-81e3-4a206288a619",
        "created_at": "2015-07-06T23:23:09Z",
        "updated_at": null
      },
      "entity": {
        "name": "name_1",
        "position": 1,
        "enabled": true,
        "locked": false,
        "filename": "name-1585"
      }
    },
    {
      "metadata": {
        "guid": "321ae4cb-f377-4ab4-ad3e-b3494e90cd87",
        "url": "/v2/buildpacks/321ae4cb-f377-4ab4-ad3e-b3494e90cd87",
        "created_at": "2015-07-06T23:23:09Z",
        "updated_at": null
      },
      "entity": {
        "name": "name_2",
        "position": 2,
        "enabled": true,
        "locked": false,
        "filename": "name-1586"
      }
    },
    {
      "metadata": {
        "guid": "cb45a899-436f-4012-9585-f0e9ec6e7dd1",
        "url": "/v2/buildpacks/cb45a899-436f-4012-9585-f0e9ec6e7dd1",
        "created_at": "2015-07-06T23:23:09Z",
        "updated_at": null
      },
      "entity": {
        "name": "name_3",
        "position": 3,
        "enabled": true,
        "locked": false,
        "filename": "name-1587"
      }
    }
  ]
}

Headers

Content-Type: application/json;charset=utf-8
X-VCAP-Request-ID: 33f20f27-b92a-436b-9ba2-cdfde92a7952
Content-Length: 1299
X-Content-Type-Options: nosniff