Home
Version 3
Service Instances API

Service Instances API

Delete a Service Instance

DELETE /v2/service_instances/:guid

Request

Route

DELETE /v2/service_instances/e22fd250-3108-4e9c-a7e2-628e596cfb81?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.
  • true
  • false
accepts_incomplete: true

Body

Name Description Default Valid Values Example Values

Headers

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTEzMCIsImVtYWlsIjoiZW1haWwtNzlAc29tZWRvbWFpbi5jb20iLCJzY29wZSI6WyJjbG91ZF9jb250cm9sbGVyLmFkbWluIl0sImF1ZCI6WyJjbG91ZF9jb250cm9sbGVyIl0sImV4cCI6MTQzMTY0NjYzMX0.mNHH9qCfSBWFLfI3La9TMPwEK9fVwG771pKyLb6T4VI
Host: example.org
Content-Type: application/x-www-form-urlencoded
Cookie: 

cURL

curl "https://api.[your-domain.com]/v2/service_instances/e22fd250-3108-4e9c-a7e2-628e596cfb81?accepts_incomplete=true" -d '' -X DELETE \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTEzMCIsImVtYWlsIjoiZW1haWwtNzlAc29tZWRvbWFpbi5jb20iLCJzY29wZSI6WyJjbG91ZF9jb250cm9sbGVyLmFkbWluIl0sImF1ZCI6WyJjbG91ZF9jb250cm9sbGVyIl0sImV4cCI6MTQzMTY0NjYzMX0.mNHH9qCfSBWFLfI3La9TMPwEK9fVwG771pKyLb6T4VI" \
	-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
  • create
  • update
  • delete
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": "e22fd250-3108-4e9c-a7e2-628e596cfb81",
    "url": "/v2/service_instances/e22fd250-3108-4e9c-a7e2-628e596cfb81",
    "created_at": "2015-05-07T23:37:11Z",
    "updated_at": "2015-05-07T23:37:11Z"
  },
  "entity": {
    "name": "name-1106",
    "credentials": {
      "creds-key-173": "creds-val-173"
    },
    "service_plan_guid": "677da26f-c133-419a-bc78-137475d0ef60",
    "space_guid": "c54b36a6-8b32-4e38-81c4-c36784a16678",
    "gateway_data": null,
    "dashboard_url": null,
    "type": "managed_service_instance",
    "last_operation": {
      "type": "delete",
      "state": "in progress",
      "description": "",
      "updated_at": "2015-05-07T23:37:11Z"
    },
    "space_url": "/v2/spaces/c54b36a6-8b32-4e38-81c4-c36784a16678",
    "service_plan_url": "/v2/service_plans/677da26f-c133-419a-bc78-137475d0ef60",
    "service_bindings_url": "/v2/service_instances/e22fd250-3108-4e9c-a7e2-628e596cfb81/service_bindings",
    "service_keys_url": "/v2/service_instances/e22fd250-3108-4e9c-a7e2-628e596cfb81/service_keys"
  }
}

Headers

Content-Type: application/json;charset=utf-8
X-VCAP-Request-ID: f6d781bc-6e7e-4965-9a9b-e8ab24677a11
Content-Length: 1066
X-Content-Type-Options: nosniff