Home
Version 3
Apps API

Apps API

List all Service Bindings for the App

GET /v2/apps/:guid/service_bindings

Fields

Name Description Default Valid Values Example Values

Parameters

Name Description Valid Values Example Values
guid The guid of the App
q Parameters used to filter the result set.
Format queries as <filter><op><value>
Valid ops: : >= <= < > IN
Valid filters: app_guid, service_instance_guid
  • 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

Request

Headers

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTM1MCIsImVtYWlsIjoiZW1haWwtMjUzQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MjQxMzczNzh9.2l3nmlbwBGuZCkl3AdTU5d0IQyQwhJ34Wnm_euBKTyY
Host: example.org
Cookie: 

Route

GET /v2/apps/1c0e4ccc-a9bf-46b0-9b80-8dd11228b735/service_bindings

cURL

curl "https://api.[your-domain.com]/v2/apps/1c0e4ccc-a9bf-46b0-9b80-8dd11228b735/service_bindings" -X GET \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTM1MCIsImVtYWlsIjoiZW1haWwtMjUzQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MjQxMzczNzh9.2l3nmlbwBGuZCkl3AdTU5d0IQyQwhJ34Wnm_euBKTyY" \
	-H "Host: example.org" \
	-H "Cookie: "

Response

Headers

Content-Type: application/json;charset=utf-8
X-VCAP-Request-ID: 66455347-2005-4cd6-8edb-35572d8ed843
Content-Length: 884
X-Content-Type-Options: nosniff

Status

200 OK

Body

{
  "total_results": 1,
  "total_pages": 1,
  "prev_url": null,
  "next_url": null,
  "resources": [
    {
      "metadata": {
        "guid": "57856469-3a04-4fe8-8669-fb9e8434494a",
        "url": "/v2/service_bindings/57856469-3a04-4fe8-8669-fb9e8434494a",
        "created_at": "2015-02-10T01:42:58Z",
        "updated_at": null
      },
      "entity": {
        "app_guid": "1c0e4ccc-a9bf-46b0-9b80-8dd11228b735",
        "service_instance_guid": "da931dce-e4ba-42a2-a2e3-ca516c67fb51",
        "credentials": {
          "creds-key-552": "creds-val-552"
        },
        "binding_options": {

        },
        "gateway_data": null,
        "gateway_name": "",
        "syslog_drain_url": null,
        "app_url": "/v2/apps/1c0e4ccc-a9bf-46b0-9b80-8dd11228b735",
        "service_instance_url": "/v2/service_instances/da931dce-e4ba-42a2-a2e3-ca516c67fb51"
      }
    }
  ]
}