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.eyJ1c2VyX2lkIjoidWFhLWlkLTE5MiIsImVtYWlsIjoiZW1haWwtMTQ0QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MTk5ODk5NzN9.8setc4GYWWTVftkuEfb1mhPPpcUhswT9XIrzoTrOQMg
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.eyJ1c2VyX2lkIjoidWFhLWlkLTE5MiIsImVtYWlsIjoiZW1haWwtMTQ0QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MTk5ODk5NzN9.8setc4GYWWTVftkuEfb1mhPPpcUhswT9XIrzoTrOQMg" \
	-H "Host: example.org" \
	-H "Cookie: "

Response

Headers

Content-Type: application/json;charset=utf-8
X-VCAP-Request-ID: ddfedacd-6f9e-4200-a5e7-b31d6d7df3a3
Content-Length: 868
X-Content-Type-Options: nosniff

Status

200 OK

Body

{
  "total_results": 1,
  "total_pages": 1,
  "prev_url": null,
  "next_url": null,
  "resources": [
    {
      "metadata": {
        "guid": "c83c8411-3d56-44b7-9dce-50459b10713b",
        "url": "/v2/user_provided_service_instances/c83c8411-3d56-44b7-9dce-50459b10713b",
        "created_at": "2014-12-24T01:39:32+00:00",
        "updated_at": null
      },
      "entity": {
        "name": "name-1482",
        "credentials": {
          "creds-key-325": "creds-val-325"
        },
        "space_guid": "e21bea48-558a-42f1-b20a-71a864164188",
        "type": "user_provided_service_instance",
        "syslog_drain_url": "https://foo.com/url-71",
        "space_url": "/v2/spaces/e21bea48-558a-42f1-b20a-71a864164188",
        "service_bindings_url": "/v2/user_provided_service_instances/c83c8411-3d56-44b7-9dce-50459b10713b/service_bindings"
      }
    }
  ]
}