Home
Version 3
Spaces API

Spaces API

List all Service Instances for the Space

GET /v2/spaces/:guid/service_instances

Request

Route

GET /v2/spaces/5227edce-cb8c-4bb1-b41a-8f4daf5f85c3/service_instances

Parameters

Name Description Valid Values Example Values
guid The guid of the Space
return_user_provided_service_instances When 'true', include user provided service instances.
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, service_key_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

Headers

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTE1OCIsImVtYWlsIjoiZW1haWwtOTRAc29tZWRvbWFpbi5jb20iLCJzY29wZSI6WyJjbG91ZF9jb250cm9sbGVyLmFkbWluIl0sImF1ZCI6WyJjbG91ZF9jb250cm9sbGVyIl0sImV4cCI6MTQ0NTU1NzkzOX0.acKgdq0uQqjR0lFwuU0zgFz_-MucxMJh4PZgQHGB3Pg
Host: example.org
Cookie: 

cURL

curl "https://api.[your-domain.com]/v2/spaces/5227edce-cb8c-4bb1-b41a-8f4daf5f85c3/service_instances" -X GET \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTE1OCIsImVtYWlsIjoiZW1haWwtOTRAc29tZWRvbWFpbi5jb20iLCJzY29wZSI6WyJjbG91ZF9jb250cm9sbGVyLmFkbWluIl0sImF1ZCI6WyJjbG91ZF9jb250cm9sbGVyIl0sImV4cCI6MTQ0NTU1NzkzOX0.acKgdq0uQqjR0lFwuU0zgFz_-MucxMJh4PZgQHGB3Pg" \
	-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": "efeb2582-de50-44f1-82b1-ca82ffed7791",
        "url": "/v2/service_instances/efeb2582-de50-44f1-82b1-ca82ffed7791",
        "created_at": "2015-10-15T23:52:19Z",
        "updated_at": null
      },
      "entity": {
        "name": "name-1351",
        "credentials": {
          "creds-key-203": "creds-val-203"
        },
        "service_plan_guid": "a72c2571-1655-4361-aa7a-d528e6d5d031",
        "space_guid": "5227edce-cb8c-4bb1-b41a-8f4daf5f85c3",
        "gateway_data": null,
        "dashboard_url": null,
        "type": "managed_service_instance",
        "last_operation": null,
        "tags": [

        ],
        "space_url": "/v2/spaces/5227edce-cb8c-4bb1-b41a-8f4daf5f85c3",
        "service_plan_url": "/v2/service_plans/a72c2571-1655-4361-aa7a-d528e6d5d031",
        "service_bindings_url": "/v2/service_instances/efeb2582-de50-44f1-82b1-ca82ffed7791/service_bindings",
        "service_keys_url": "/v2/service_instances/efeb2582-de50-44f1-82b1-ca82ffed7791/service_keys",
        "routes_url": "/v2/service_instances/efeb2582-de50-44f1-82b1-ca82ffed7791/routes"
      }
    }
  ]
}

Headers

Content-Type: application/json;charset=utf-8
X-VCAP-Request-ID: c4046076-4e76-41ab-9f37-5f08ff567859
Content-Length: 1247
X-Content-Type-Options: nosniff