Home
Version 3
Service Plans API

Service Plans API

List all Service Instances for the Service Plan

GET /v2/service_plans/:guid/service_instances

Fields

Name Description Default Valid Values Example Values
guid The guid of the Service Plan.

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, space_guid, service_plan_guid, service_binding_guid, gateway_name, organization_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.eyJ1c2VyX2lkIjoidWFhLWlkLTIyIiwiZW1haWwiOiJlbWFpbC0yMkBzb21lZG9tYWluLmNvbSIsInNjb3BlIjpbImNsb3VkX2NvbnRyb2xsZXIuYWRtaW4iXSwiYXVkIjpbImNsb3VkX2NvbnRyb2xsZXIiXSwiZXhwIjoxNDI0MTM3MzYzfQ.P9KurJOhxHgE2K49GKC_PbilCcf0GRpKNXEk2BpYvXg
Host: example.org
Cookie: 

Route

GET /v2/service_plans/877fe458-9435-402a-a2b9-341f1d97352a/service_instances

cURL

curl "https://api.[your-domain.com]/v2/service_plans/877fe458-9435-402a-a2b9-341f1d97352a/service_instances" -X GET \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTIyIiwiZW1haWwiOiJlbWFpbC0yMkBzb21lZG9tYWluLmNvbSIsInNjb3BlIjpbImNsb3VkX2NvbnRyb2xsZXIuYWRtaW4iXSwiYXVkIjpbImNsb3VkX2NvbnRyb2xsZXIiXSwiZXhwIjoxNDI0MTM3MzYzfQ.P9KurJOhxHgE2K49GKC_PbilCcf0GRpKNXEk2BpYvXg" \
	-H "Host: example.org" \
	-H "Cookie: "

Response

Headers

Content-Type: application/json;charset=utf-8
X-VCAP-Request-ID: eb4e1a99-7e59-45b4-8183-66fdedd42d06
Content-Length: 1019
X-Content-Type-Options: nosniff

Status

200 OK

Body

{
  "total_results": 1,
  "total_pages": 1,
  "prev_url": null,
  "next_url": null,
  "resources": [
    {
      "metadata": {
        "guid": "b1b125c3-9b0e-487b-bdc3-24fdc880da12",
        "url": "/v2/service_instances/b1b125c3-9b0e-487b-bdc3-24fdc880da12",
        "created_at": "2015-02-10T01:42:42Z",
        "updated_at": null
      },
      "entity": {
        "name": "name-49",
        "credentials": {
          "creds-key-45": "creds-val-45"
        },
        "service_plan_guid": "877fe458-9435-402a-a2b9-341f1d97352a",
        "space_guid": "3fa8561b-c4aa-4ac9-a54d-b0c0c94b0875",
        "gateway_data": null,
        "dashboard_url": null,
        "type": "managed_service_instance",
        "last_operation": null,
        "space_url": "/v2/spaces/3fa8561b-c4aa-4ac9-a54d-b0c0c94b0875",
        "service_plan_url": "/v2/service_plans/877fe458-9435-402a-a2b9-341f1d97352a",
        "service_bindings_url": "/v2/service_instances/b1b125c3-9b0e-487b-bdc3-24fdc880da12/service_bindings"
      }
    }
  ]
}