Create a Service Broker
POST /v2/service_brokers
Request
Route
POST /v2/service_brokers
Body
Name |
Description |
Default |
Valid Values |
Example Values |
name
|
The name of the service broker.
|
|
|
|
broker_url
|
The URL of the service broker.
|
|
|
- https://broker.example.com
|
auth_username
|
The username with which to authenticate against the service broker.
|
|
|
|
auth_password
|
The password with which to authenticate against the service broker.
|
|
|
|
space_guid
|
Guid of a space the broker is scoped to. Space developers are able to create service brokers scoped to a space.
|
|
|
|
{
"name": "service-broker-name",
"broker_url": "https://broker.example.com",
"auth_username": "admin",
"auth_password": "secretpassw0rd"
}
Headers
cURL
curl "https://api.[your-domain.com]/v2/service_brokers" -d '{
"name": "service-broker-name",
"broker_url": "https://broker.example.com",
"auth_username": "admin",
"auth_password": "secretpassw0rd"
}' -X POST \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTIiLCJlbWFpbCI6ImVtYWlsLTJAc29tZWRvbWFpbi5jb20iLCJzY29wZSI6WyJjbG91ZF9jb250cm9sbGVyLmFkbWluIl0sImF1ZCI6WyJjbG91ZF9jb250cm9sbGVyIl0sImV4cCI6MTQ2MTk1ODM4OX0._-2IiuBpxf0zmCcyJH9PqWEGmP6GD5wqtI74VFg_tPQ" \
-H "Host: example.org" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Cookie: "
Response
Status
201 Created
Body
{
"metadata": {
"guid": "5f1d99b6-7936-4362-ba94-795c2ef6f167",
"created_at": "2016-04-22T19:33:09Z",
"updated_at": null,
"url": "/v2/service_brokers/5f1d99b6-7936-4362-ba94-795c2ef6f167"
},
"entity": {
"name": "service-broker-name",
"broker_url": "https://broker.example.com",
"auth_username": "admin",
"space_guid": null
}
}
Headers