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.eyJ1c2VyX2lkIjoidWFhLWlkLTExNyIsImVtYWlsIjoiZW1haWwtODdAc29tZWRvbWFpbi5jb20iLCJzY29wZSI6WyJjbG91ZF9jb250cm9sbGVyLmFkbWluIl0sImF1ZCI6WyJjbG91ZF9jb250cm9sbGVyIl0sImV4cCI6MTQyMjk5MDg3MX0.bKlDL8ke4LPmDSWcbjoWX2drSWROOL4RUTO-SE6zjfU
Host: example.org
Cookie: 

Route

GET /v2/service_plans/57c9ea70-6afa-4ff7-91b4-597730972479/service_instances

cURL

curl "https://api.[your-domain.com]/v2/service_plans/57c9ea70-6afa-4ff7-91b4-597730972479/service_instances" -X GET \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTExNyIsImVtYWlsIjoiZW1haWwtODdAc29tZWRvbWFpbi5jb20iLCJzY29wZSI6WyJjbG91ZF9jb250cm9sbGVyLmFkbWluIl0sImF1ZCI6WyJjbG91ZF9jb250cm9sbGVyIl0sImV4cCI6MTQyMjk5MDg3MX0.bKlDL8ke4LPmDSWcbjoWX2drSWROOL4RUTO-SE6zjfU" \
	-H "Host: example.org" \
	-H "Cookie: "

Response

Headers

Content-Type: application/json;charset=utf-8
X-VCAP-Request-ID: 4192dd36-de7f-4dd5-adcd-1ad34d5b3c57
Content-Length: 1083
X-Content-Type-Options: nosniff

Status

200 OK

Body

{
  "total_results": 1,
  "total_pages": 1,
  "prev_url": null,
  "next_url": null,
  "resources": [
    {
      "metadata": {
        "guid": "29782724-5940-4102-89c1-4f12886180e1",
        "url": "/v2/service_instances/29782724-5940-4102-89c1-4f12886180e1",
        "created_at": "2015-01-27T19:14:31Z",
        "updated_at": null
      },
      "entity": {
        "name": "name-1128",
        "credentials": {
          "creds-key-199": "creds-val-199"
        },
        "service_plan_guid": "57c9ea70-6afa-4ff7-91b4-597730972479",
        "space_guid": "a89f6062-d68f-4012-843d-c6cc53e3a2a8",
        "gateway_data": null,
        "dashboard_url": null,
        "type": "managed_service_instance",
        "state": "in progress",
        "state_description": "state_description goes here",
        "space_url": "/v2/spaces/a89f6062-d68f-4012-843d-c6cc53e3a2a8",
        "service_plan_url": "/v2/service_plans/57c9ea70-6afa-4ff7-91b4-597730972479",
        "service_bindings_url": "/v2/service_instances/29782724-5940-4102-89c1-4f12886180e1/service_bindings"
      }
    }
  ]
}