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.eyJ1c2VyX2lkIjoidWFhLWlkLTM2IiwiZW1haWwiOiJlbWFpbC0zNkBzb21lZG9tYWluLmNvbSIsInNjb3BlIjpbImNsb3VkX2NvbnRyb2xsZXIuYWRtaW4iXSwiYXVkIjpbImNsb3VkX2NvbnRyb2xsZXIiXSwiZXhwIjoxNDI2MTg3NzM4fQ.zj4Il_wWxjakZGi9myG1GaomG7rLdWJYCxac707xjVk" \
-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": "821cca24-bf8b-448e-b804-85aab1166ab8",
"url": "/v2/user_provided_service_instances/821cca24-bf8b-448e-b804-85aab1166ab8",
"created_at": "2015-03-05T19:15:38Z",
"updated_at": null
},
"entity": {
"name": "name-190",
"credentials": {
"creds-key-91": "creds-val-91"
},
"space_guid": "3bffa92a-5b92-48e7-9c91-7a187ef6b983",
"type": "user_provided_service_instance",
"syslog_drain_url": "https://foo.com/url-16",
"space_url": "/v2/spaces/3bffa92a-5b92-48e7-9c91-7a187ef6b983",
"service_bindings_url": "/v2/user_provided_service_instances/821cca24-bf8b-448e-b804-85aab1166ab8/service_bindings"
}
}
]
}
Headers