Delete a Service Instance
DELETE /v2/service_instances/:guid
Request
Route
DELETE /v2/service_instances/e3b32542-e124-4dea-9fe5-a3d7a5f9b2b6?accepts_incomplete=true
Parameters
Name |
Description |
Valid Values |
Example Values |
accepts_incomplete
|
Set to `true` if the client allows asynchronous provisioning. The cloud controller may respond before the service is ready for use.
|
|
|
accepts_incomplete: true
Body
Name |
Description |
Default |
Valid Values |
Example Values |
Headers
cURL
curl "https://api.[your-domain.com]/v2/service_instances/e3b32542-e124-4dea-9fe5-a3d7a5f9b2b6?accepts_incomplete=true" -d '' -X DELETE \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTM4MyIsImVtYWlsIjoiZW1haWwtMjg0QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MjkwMzg3MjF9.KyjPCQDemyCVFqEfkb6_d5BduBsO0bQGC7ItmcWkg6Q" \
-H "Host: example.org" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Cookie: "
Response
Status
202 Accepted
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": "e3b32542-e124-4dea-9fe5-a3d7a5f9b2b6",
"url": "/v2/service_instances/e3b32542-e124-4dea-9fe5-a3d7a5f9b2b6",
"created_at": "2015-04-07T19:12:01Z",
"updated_at": "2015-04-07T19:12:01Z"
},
"entity": {
"name": "name-2087",
"credentials": {
"creds-key-616": "creds-val-616"
},
"service_plan_guid": "5ff30e1d-0025-4eb0-9e6c-1cd6f2f9aa37",
"space_guid": "c31984cd-c6ce-41ee-8e3a-39878b56d779",
"gateway_data": null,
"dashboard_url": null,
"type": "managed_service_instance",
"last_operation": {
"type": "delete",
"state": "in progress",
"description": "",
"updated_at": "2015-04-07T19:12:01Z"
},
"space_url": "/v2/spaces/c31984cd-c6ce-41ee-8e3a-39878b56d779",
"service_plan_url": "/v2/service_plans/5ff30e1d-0025-4eb0-9e6c-1cd6f2f9aa37",
"service_bindings_url": "/v2/service_instances/e3b32542-e124-4dea-9fe5-a3d7a5f9b2b6/service_bindings",
"service_keys_url": "/v2/service_instances/e3b32542-e124-4dea-9fe5-a3d7a5f9b2b6/service_keys"
}
}
Headers