Retrieve a Particular Service Instance
GET /v2/service_instances/:guid
Request
Route
GET /v2/service_instances/6648d762-3cd8-43fa-9879-259cf8ba7dd4
Parameters
Name |
Description |
Valid Values |
Example Values |
guid
|
The guid of the Service Instance
|
|
|
Body
Name |
Description |
Default |
Valid Values |
Example Values |
Headers
cURL
curl "https://api.[your-domain.com]/v2/service_instances/6648d762-3cd8-43fa-9879-259cf8ba7dd4" -X GET \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTM0NCIsImVtYWlsIjoiZW1haWwtMjQ2QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MjU5NDg2Nzd9.K0uUMSQcGrYUjRq2MWiJUImCOzby8CqAIRbL8TtTNTc" \
-H "Host: example.org" \
-H "Cookie: "
Response
Status
200 OK
Body
Name |
Description |
Valid Values |
name
|
The human-readable name of the service instance.
|
|
credentials
|
The service broker-provided credentials to use this service.
|
|
service_plan_guid
|
The service plan GUID that this service instance is utilizing.
|
|
space_guid
|
The space GUID that this service instance belongs to.
|
|
gateway_data
|
|
|
dashboard_url
|
The service broker-provided URL to access administrative features of the service instance. May be null.
|
|
type
|
The type of service instance.
|
- managed_service_instance
- user_provided_service_instance
|
last_operation
|
The status of the last operation requested on the service instance. May be null.
|
|
last_operation.type
|
The type of operation that was last performed or currently being performed on the service instance
|
|
last_operation.state
|
The status of the last operation or current operation being performed on the service instance.
|
- in progress
- succeeded
- failed
|
last_operation.description
|
The service broker-provided description of the operation. May be null.
|
|
last_operation.updated_at
|
The timestamp that the Cloud Controller last checked the service instance state from the broker.
|
|
space_url
|
The relative path to the space resource that this service instance belongs to.
|
|
service_plan_url
|
The relative path to the service plan resource that this service instance belongs to.
|
|
service_binding_url
|
The relative path to the service bindings that this service instance is bound to.
|
|
{
"metadata": {
"guid": "6648d762-3cd8-43fa-9879-259cf8ba7dd4",
"url": "/v2/service_instances/6648d762-3cd8-43fa-9879-259cf8ba7dd4",
"created_at": "2015-03-03T00:51:16Z",
"updated_at": null
},
"entity": {
"name": "name-1918",
"credentials": {
"creds-key-542": "creds-val-542"
},
"service_plan_guid": "94ed5f3f-5fda-4feb-a704-92f5b9c9b8ce",
"space_guid": "c6c82444-b1e1-4f26-a7b0-570d588281eb",
"gateway_data": null,
"dashboard_url": null,
"type": "managed_service_instance",
"last_operation": {
"type": "create",
"state": "succeeded",
"description": "service broker-provided description",
"updated_at": "2015-03-03T00:51:16Z"
},
"space_url": "/v2/spaces/c6c82444-b1e1-4f26-a7b0-570d588281eb",
"service_plan_url": "/v2/service_plans/94ed5f3f-5fda-4feb-a704-92f5b9c9b8ce",
"service_bindings_url": "/v2/service_instances/6648d762-3cd8-43fa-9879-259cf8ba7dd4/service_bindings"
}
}
Headers