Create a Service Binding
POST /v2/service_bindings
Request
Route
POST /v2/service_bindings
Body
Name |
Description |
Default |
Valid Values |
Example Values |
service_instance_guid
|
The guid of the service instance to bind
|
|
|
|
app_guid
|
The guid of the app to bind
|
|
|
|
binding_options
|
A hash of options that are passed to v1 brokers
|
|
|
|
parameters
|
Arbitrary parameters to pass along to the service broker. Must be a JSON object
|
|
|
|
{
"service_instance_guid": "f1f69e9b-2a2c-4af4-9413-de5ee2e28f00",
"app_guid": "1f4cfc05-c9d3-4e57-a432-3d8eded7c550",
"parameters": {
"the_service_broker": "wants this object"
}
}
Headers
cURL
curl "https://api.[your-domain.com]/v2/service_bindings" -d '{
"service_instance_guid": "f1f69e9b-2a2c-4af4-9413-de5ee2e28f00",
"app_guid": "1f4cfc05-c9d3-4e57-a432-3d8eded7c550",
"parameters": {
"the_service_broker": "wants this object"
}
}' -X POST \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTIyMiIsImVtYWlsIjoiZW1haWwtMTQwQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MzM5ODExMDh9.bbRb3V6L3Z6llZxyr1jK8DoRaPEBy9XCvMIH9Y4WY9Q" \
-H "Host: example.org" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Cookie: "
Response
Status
201 Created
Body
{
"metadata": {
"guid": "d35d183e-ac39-44ea-9e46-1a89d8c72af7",
"url": "/v2/service_bindings/d35d183e-ac39-44ea-9e46-1a89d8c72af7",
"created_at": "2015-06-04T00:05:08Z",
"updated_at": null
},
"entity": {
"app_guid": "1f4cfc05-c9d3-4e57-a432-3d8eded7c550",
"service_instance_guid": "f1f69e9b-2a2c-4af4-9413-de5ee2e28f00",
"credentials": {
"creds-key-307": "creds-val-307"
},
"binding_options": {
},
"gateway_data": null,
"gateway_name": "",
"syslog_drain_url": null,
"app_url": "/v2/apps/1f4cfc05-c9d3-4e57-a432-3d8eded7c550",
"service_instance_url": "/v2/user_provided_service_instances/f1f69e9b-2a2c-4af4-9413-de5ee2e28f00"
}
}
Headers