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/128d4449-0a92-4c8f-b869-8e4e408cafd2
Body
{
"auth_username": "admin-user",
"auth_password": "some-secret",
"broker_url": "https://mybroker.example.com"
}
cURL
curl "https://api.[your-domain.com]/v2/service_brokers/128d4449-0a92-4c8f-b869-8e4e408cafd2" -d '{
"auth_username": "admin-user",
"auth_password": "some-secret",
"broker_url": "https://mybroker.example.com"
}' -X PUT \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTIzNiIsImVtYWlsIjoiZW1haWwtMTc2QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MjQzMTAxMzR9.txVQMn29dXJiwyB5sPHVuYBhOmTgMTAMQW4hy_KnDjI" \
-H "Host: example.org" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Cookie: "
Response
Headers
Status
200 OK
Body
{
"metadata": {
"guid": "128d4449-0a92-4c8f-b869-8e4e408cafd2",
"created_at": "2015-02-12T01:42:14Z",
"updated_at": "2015-02-12T01:42:14Z",
"url": "/v2/service_brokers/128d4449-0a92-4c8f-b869-8e4e408cafd2"
},
"entity": {
"name": "name-1487",
"broker_url": "https://mybroker.example.com",
"auth_username": "admin-user"
}
}