Home
Version 3
Service Instances API

Service Instances API

List all Service Instances

GET /v2/service_instances

Fields

Name Description Default Valid Values Example Values

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.eyJ1c2VyX2lkIjoidWFhLWlkLTI4NSIsImVtYWlsIjoiZW1haWwtMjEwQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MTY1MjY3MTN9.swACAX_lONUhOBxW5xx4s3icunhrE5k3tbg0_FWntL4
Host: example.org
Cookie: 

Route

GET /v2/service_instances

cURL

curl "https://api.[your-domain.com]/v2/service_instances" -X GET \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTI4NSIsImVtYWlsIjoiZW1haWwtMjEwQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MTY1MjY3MTN9.swACAX_lONUhOBxW5xx4s3icunhrE5k3tbg0_FWntL4" \
	-H "Host: example.org" \
	-H "Cookie: "

Response

Headers

Content-Type: application/json;charset=utf-8
X-VCAP-Request-ID: c354ab64-5d00-4826-b9c5-6f470bc668cd
Content-Length: 996
X-Content-Type-Options: nosniff

Status

200 OK

Body

{
  "total_results": 1,
  "total_pages": 1,
  "prev_url": null,
  "next_url": null,
  "resources": [
    {
      "metadata": {
        "guid": "211a4c38-36ac-4e22-83ad-b0a9fb8ec351",
        "url": "/v2/service_instances/211a4c38-36ac-4e22-83ad-b0a9fb8ec351",
        "created_at": "2014-11-13T23:38:33+00:00",
        "updated_at": null
      },
      "entity": {
        "name": "name-1179",
        "credentials": {
          "creds-key-455": "creds-val-455"
        },
        "service_plan_guid": "7b437af2-6a2c-46d0-9c27-4c66bc19362a",
        "space_guid": "25b6fd7a-26c1-4f0a-8091-ad17baf5590a",
        "gateway_data": null,
        "dashboard_url": null,
        "type": "managed_service_instance",
        "space_url": "/v2/spaces/25b6fd7a-26c1-4f0a-8091-ad17baf5590a",
        "service_plan_url": "/v2/service_plans/7b437af2-6a2c-46d0-9c27-4c66bc19362a",
        "service_bindings_url": "/v2/service_instances/211a4c38-36ac-4e22-83ad-b0a9fb8ec351/service_bindings"
      }
    }
  ]
}