Updating a Service (deprecated)
PUT /v2/services
Request
Route
PUT /v2/services/977fcb5c-e1a8-4191-81a3-67009bb1d43d
Body
Name |
Description |
Default |
Valid Values |
Example Values |
guid
|
The guid of the service
|
|
|
|
label
|
The name of the service
|
|
|
|
description
|
A short blurb describing the service
|
|
|
- Mysql stores things for you
|
long_description
|
A longer description of the service
|
|
|
- Mysql is a database. It stores things. Use it in your apps...
|
info_url
|
A url that points to an info page for the service
|
|
|
- http://info.somemysqlservice.com
|
documentation_url
|
A url that points to a documentation page for the service
|
|
|
- http://docs.somemysqlservice.com
|
timeout
|
A timeout used by the v1 service gateway client
|
|
|
|
active
|
A boolean describing that the service can be provisioned by users
|
false
|
|
|
bindable
|
A boolean describing that the service can be bound to applications
|
true
|
|
|
extra
|
A JSON field with extra data pertaining to the service
|
|
|
- {"providerDisplayName": "MyServiceProvider"}
|
unique_id
|
A guid that identifies the service with the broker (not the same as the guid above)
|
|
|
|
tags
|
A list of tags for the service
|
[]
|
|
|
requires
|
A list of dependencies for services
|
[]
|
|
|
provider
|
The name of the service provider (used only by v1 service gateways)
|
|
|
|
version
|
The version of the service (used only by v1 service gateways)
|
|
|
|
url
|
The url of ther service provider (used only by v1 service gateways)
|
|
|
|
service_broker_guid
|
The guid of the v2 service broker associated with the service
|
|
|
|
plan_updateable
|
A boolean describing that an instance of this service can be updated to a different plan
|
false
|
|
|
{
"label": "SomeMysqlService",
"description": "Mysql stores things for you",
"provider": "MySql Provider",
"version": "2.0",
"url": "http://myql.provider.com"
}
Headers
cURL
curl "https://api.[your-domain.com]/v2/services/977fcb5c-e1a8-4191-81a3-67009bb1d43d" -d '{
"label": "SomeMysqlService",
"description": "Mysql stores things for you",
"provider": "MySql Provider",
"version": "2.0",
"url": "http://myql.provider.com"
}' -X PUT \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTQyNSIsImVtYWlsIjoiZW1haWwtMzE1QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0Mzg2NDE4MTZ9._W72ybfDPNdokULZMF05dAuHGW-5xsqdKtXjwDGuYnk" \
-H "Host: example.org" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Cookie: "
Response
Status
201 Created
Body
{
"metadata": {
"guid": "977fcb5c-e1a8-4191-81a3-67009bb1d43d",
"url": "/v2/services/977fcb5c-e1a8-4191-81a3-67009bb1d43d",
"created_at": "2015-07-27T22:43:35Z",
"updated_at": "2015-07-27T22:43:35Z"
},
"entity": {
"label": "SomeMysqlService",
"provider": "MySql Provider",
"url": "http://myql.provider.com",
"description": "Mysql stores things for you",
"long_description": null,
"version": "2.0",
"info_url": null,
"active": true,
"bindable": true,
"unique_id": "0c0a5018-32e6-4df6-a650-44784798e4df",
"extra": null,
"tags": [
],
"requires": [
],
"documentation_url": null,
"service_broker_guid": "58450a9d-86e0-431c-a94d-bb49d3a33a26",
"plan_updateable": false,
"service_plans_url": "/v2/services/977fcb5c-e1a8-4191-81a3-67009bb1d43d/service_plans"
}
}
Headers