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": "a8b4950b-ea69-42d4-9e3e-60259b8ea4bb",
"app_guid": "501ebb50-c047-4608-abae-e48ad700a4b4",
"parameters": {
"the_service_broker": "wants this object"
}
}
Headers
cURL
curl "https://api.[your-domain.com]/v2/service_bindings" -d '{
"service_instance_guid": "a8b4950b-ea69-42d4-9e3e-60259b8ea4bb",
"app_guid": "501ebb50-c047-4608-abae-e48ad700a4b4",
"parameters": {
"the_service_broker": "wants this object"
}
}' -X POST \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTMzOCIsImVtYWlsIjoiZW1haWwtMjQyQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0NTM4MzcyODB9.sUky-PPQK94cG0moc6EcGt1mJCJSGP3C6Nr0VaNFxEM" \
-H "Host: example.org" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Cookie: "
Response
Status
201 Created
Body
{
"metadata": {
"guid": "2e2bd2af-15d5-474d-a7d0-ab59169da172",
"url": "/v2/service_bindings/2e2bd2af-15d5-474d-a7d0-ab59169da172",
"created_at": "2016-01-19T19:41:20Z",
"updated_at": null
},
"entity": {
"app_guid": "501ebb50-c047-4608-abae-e48ad700a4b4",
"service_instance_guid": "a8b4950b-ea69-42d4-9e3e-60259b8ea4bb",
"credentials": {
"creds-key-57": "creds-val-57"
},
"binding_options": {
},
"gateway_data": null,
"gateway_name": "",
"syslog_drain_url": null,
"app_url": "/v2/apps/501ebb50-c047-4608-abae-e48ad700a4b4",
"service_instance_url": "/v2/user_provided_service_instances/a8b4950b-ea69-42d4-9e3e-60259b8ea4bb"
}
}
Headers