Service Instances API

List all Service Bindings for the Service Instance

GET /v2/service_instances/:guid/service_bindings

Request

Route

GET /v2/service_instances/92d707ce-c06c-421a-a1d2-ed1e750af650/service_bindings

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: app_guid, service_instance_guid
(Note that filtering on service_instance_guid will return an empty list if you specify anything other than the guid included in the path.)
  • 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.eyJ1c2VyX2lkIjoidWFhLWlkLTE1OCIsImVtYWlsIjoiZW1haWwtMTEzQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NjYwMDg4OTB9.GYSBn1pJ-RxlsqQSIB0-q0G0J3fEpD8oIJrMOkcU3V8
Host: example.org
Cookie: 

cURL

curl "https://api.[your-domain.com]/v2/service_instances/92d707ce-c06c-421a-a1d2-ed1e750af650/service_bindings" -X GET \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTE1OCIsImVtYWlsIjoiZW1haWwtMTEzQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NjYwMDg4OTB9.GYSBn1pJ-RxlsqQSIB0-q0G0J3fEpD8oIJrMOkcU3V8" \
	-H "Host: example.org" \
	-H "Cookie: "

Response

Status

200 OK

Body

{
  "total_results": 1,
  "total_pages": 1,
  "prev_url": null,
  "next_url": null,
  "resources": [
    {
      "metadata": {
        "guid": "83a87158-92b2-46ea-be66-9dad6b2cb116",
        "url": "/v2/service_bindings/83a87158-92b2-46ea-be66-9dad6b2cb116",
        "created_at": "2016-06-08T16:41:30Z",
        "updated_at": "2016-06-08T16:41:26Z"
      },
      "entity": {
        "app_guid": "31809eda-4bdd-44fc-b804-eefe662b3a98",
        "service_instance_guid": "92d707ce-c06c-421a-a1d2-ed1e750af650",
        "credentials": {
          "creds-key-48": "creds-val-48"
        },
        "binding_options": {

        },
        "gateway_data": null,
        "gateway_name": "",
        "syslog_drain_url": null,
        "volume_mounts": [

        ],
        "name": "prod-db",
        "last_operation": {
          "type": "create",
          "state": "succeeded",
          "description": "",
          "updated_at": "2018-02-28T16:25:19Z",
          "created_at": "2018-02-28T16:25:19Z"
        },
        "app_url": "/v2/apps/31809eda-4bdd-44fc-b804-eefe662b3a98",
        "service_instance_url": "/v2/service_instances/92d707ce-c06c-421a-a1d2-ed1e750af650",
        "service_binding_parameters_url": "/v2/service_bindings/83a87158-92b2-46ea-be66-9dad6b2cb116/parameters"
      }
    }
  ]
}

Headers

Content-Type: application/json;charset=utf-8
X-VCAP-Request-ID: 06537d99-63da-4983-8232-fe46454c99a9
Content-Length: 921
X-Content-Type-Options: nosniff