List all User Provided Service Instances
GET /v2/user_provided_service_instances
Request
Route
GET /v2/user_provided_service_instances
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
|
|
|
Body
Name |
Description |
Default |
Valid Values |
Example Values |
Headers
cURL
curl "https://api.[your-domain.com]/v2/user_provided_service_instances" -X GET \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTMxNiIsImVtYWlsIjoiZW1haWwtMjQzQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MzE2NDY2NDN9.KLhfQllYfzsvr_LQqWlQQnGfVCutjqriL5_jTN3yCwk" \
-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": "4bcbd79d-bdff-459d-a3a9-b621eefa3ea5",
"url": "/v2/user_provided_service_instances/4bcbd79d-bdff-459d-a3a9-b621eefa3ea5",
"created_at": "2015-05-07T23:37:23Z",
"updated_at": null
},
"entity": {
"name": "name-1956",
"credentials": {
"creds-key-545": "creds-val-545"
},
"space_guid": "ee7e8193-ab64-4c95-a4ee-5daf0cba01bd",
"type": "user_provided_service_instance",
"syslog_drain_url": "https://foo.com/url-80",
"space_url": "/v2/spaces/ee7e8193-ab64-4c95-a4ee-5daf0cba01bd",
"service_bindings_url": "/v2/user_provided_service_instances/4bcbd79d-bdff-459d-a3a9-b621eefa3ea5/service_bindings"
}
}
]
}
Headers