Update a Service Broker
PUT /v2/service_brokers/:guid
Fields
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.
|
|
|
|
Parameters
Name |
Description |
Valid Values |
Example Values |
guid
|
The guid of the Service Broker
|
|
|
Request
Headers
Route
PUT /v2/service_brokers/314ad6dc-077b-4c53-b6ff-ebc0096eef5b
Body
{
"name": "service-broker-name",
"broker_url": "https://broker.example.com",
"auth_username": "admin",
"auth_password": "secretpassw0rd"
}
cURL
curl "https://api.[your-domain.com]/v2/service_brokers/314ad6dc-077b-4c53-b6ff-ebc0096eef5b" -d '{
"name": "service-broker-name",
"broker_url": "https://broker.example.com",
"auth_username": "admin",
"auth_password": "secretpassw0rd"
}' -X PUT \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTE4NiIsImVtYWlsIjoiZW1haWwtMTU5QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MTc0NjIzNjN9.ZqqMoNzQYRARc_6OZVUeTgrGjVlYx4HS0uesNvie6uY" \
-H "Host: example.org" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Cookie: "
Response
Headers
Status
200 OK
Body
{
"metadata": {
"guid": "314ad6dc-077b-4c53-b6ff-ebc0096eef5b",
"created_at": "2014-11-24T19:32:42+00:00",
"updated_at": "2014-11-24T19:32:43+00:00",
"url": "/v2/service_brokers/314ad6dc-077b-4c53-b6ff-ebc0096eef5b"
},
"entity": {
"name": "service-broker-name",
"broker_url": "https://broker.example.com",
"auth_username": "admin"
}
}