Home
Version 3
Service Instances API

Service Instances API

Unbinding a service instance from a route (experimental)

DELETE /v2/service_instances/:service_instance_guid/routes/:route_guid

Request

Route

DELETE /v2/service_instances/94af9413-32aa-4bd2-bf73-6d0ca886ca73/routes/a595324b-d6ad-4dd8-b18d-d6f081c3138b
{}

Headers

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTI1MiIsImVtYWlsIjoiZW1haWwtMTc4QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NDE2NjI2MDd9.30_DvQYY-75scp2qHWwQz2vZhlBSrj_FrU66WJWhCR0
Host: example.org
Content-Type: application/x-www-form-urlencoded
Cookie: 

cURL

curl "https://api.[your-domain.com]/v2/service_instances/94af9413-32aa-4bd2-bf73-6d0ca886ca73/routes/a595324b-d6ad-4dd8-b18d-d6f081c3138b" -d '{}' -X DELETE \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTI1MiIsImVtYWlsIjoiZW1haWwtMTc4QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NDE2NjI2MDd9.30_DvQYY-75scp2qHWwQz2vZhlBSrj_FrU66WJWhCR0" \
	-H "Host: example.org" \
	-H "Content-Type: application/x-www-form-urlencoded" \
	-H "Cookie: "

Response

Status

201 Created

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.
routes_url Routes bound to the service instance. Requests to these routes will be forwarded to the service instance.
tags A list of tags for the service instance
{
  "metadata": {
    "guid": "94af9413-32aa-4bd2-bf73-6d0ca886ca73",
    "url": "/v2/service_instances/94af9413-32aa-4bd2-bf73-6d0ca886ca73",
    "created_at": "2015-08-31T21:50:07Z",
    "updated_at": null
  },
  "entity": {
    "name": "name-928",
    "credentials": {
      "creds-key-388": "creds-val-388"
    },
    "service_plan_guid": "35854066-f1fd-490f-a135-e1bbd26b1026",
    "space_guid": "9ca1c18e-6831-4e8e-bc2e-7f5cb8fe0513",
    "gateway_data": null,
    "dashboard_url": null,
    "type": "managed_service_instance",
    "last_operation": {
      "type": "create",
      "state": "succeeded",
      "description": "service broker-provided description",
      "updated_at": "2015-08-31T21:50:07Z",
      "created_at": "2015-08-31T21:50:07Z"
    },
    "tags": [
      "accounting",
      "mongodb"
    ],
    "space_url": "/v2/spaces/9ca1c18e-6831-4e8e-bc2e-7f5cb8fe0513",
    "service_plan_url": "/v2/service_plans/35854066-f1fd-490f-a135-e1bbd26b1026",
    "service_bindings_url": "/v2/service_instances/94af9413-32aa-4bd2-bf73-6d0ca886ca73/service_bindings",
    "service_keys_url": "/v2/service_instances/94af9413-32aa-4bd2-bf73-6d0ca886ca73/service_keys",
    "routes_url": "/v2/service_instances/94af9413-32aa-4bd2-bf73-6d0ca886ca73/routes"
  }
}

Headers

Content-Type: application/json;charset=utf-8
X-VCAP-Request-ID: 93324a7c-4c21-4795-9af7-32ccfcab3701
Content-Length: 1268
X-Content-Type-Options: nosniff