Home
Version 3
User Provided Service Instances API

User Provided Service Instances API

List all User Provided Service Instances

GET /v2/user_provided_service_instances

Fields

Name Description Default Valid Values Example Values

Parameters

Name Description Valid Values Example Values
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.eyJ1c2VyX2lkIjoidWFhLWlkLTI5MSIsImVtYWlsIjoiZW1haWwtMTk0QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MjQxMzczNzN9.hEU7P0XwcFzO_CMt2U4_YfY4-MtcYntMwRihA3KpoZI
Host: example.org
Cookie: 

Route

GET /v2/user_provided_service_instances

cURL

curl "https://api.[your-domain.com]/v2/user_provided_service_instances" -X GET \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTI5MSIsImVtYWlsIjoiZW1haWwtMTk0QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MjQxMzczNzN9.hEU7P0XwcFzO_CMt2U4_YfY4-MtcYntMwRihA3KpoZI" \
	-H "Host: example.org" \
	-H "Cookie: "

Response

Headers

Content-Type: application/json;charset=utf-8
X-VCAP-Request-ID: 1ad1c0d9-7567-4f0b-9084-962b6b42217b
Content-Length: 863
X-Content-Type-Options: nosniff

Status

200 OK

Body

{
  "total_results": 1,
  "total_pages": 1,
  "prev_url": null,
  "next_url": null,
  "resources": [
    {
      "metadata": {
        "guid": "a3605b2c-0755-491f-93c5-b7c564f48734",
        "url": "/v2/user_provided_service_instances/a3605b2c-0755-491f-93c5-b7c564f48734",
        "created_at": "2015-02-10T01:42:53Z",
        "updated_at": null
      },
      "entity": {
        "name": "name-1413",
        "credentials": {
          "creds-key-408": "creds-val-408"
        },
        "space_guid": "93603080-fc6c-465f-9486-1fd4ab0c28ff",
        "type": "user_provided_service_instance",
        "syslog_drain_url": "https://foo.com/url-44",
        "space_url": "/v2/spaces/93603080-fc6c-465f-9486-1fd4ab0c28ff",
        "service_bindings_url": "/v2/user_provided_service_instances/a3605b2c-0755-491f-93c5-b7c564f48734/service_bindings"
      }
    }
  ]
}