Creating a Service (deprecated)
POST /v2/services
Fields
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
|
|
|
|
Request
Headers
Route
POST /v2/services
Body
{
"label": "SomeMysqlService",
"description": "Mysql stores things for you",
"provider": "MySql Provider",
"version": "2.0",
"url": "http://myql.provider.com"
}
cURL
curl "https://api.[your-domain.com]/v2/services" -d '{
"label": "SomeMysqlService",
"description": "Mysql stores things for you",
"provider": "MySql Provider",
"version": "2.0",
"url": "http://myql.provider.com"
}' -X POST \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTEzIiwiZW1haWwiOiJlbWFpbC0xM0Bzb21lZG9tYWluLmNvbSIsInNjb3BlIjpbImNsb3VkX2NvbnRyb2xsZXIuYWRtaW4iXSwiYXVkIjpbImNsb3VkX2NvbnRyb2xsZXIiXSwiZXhwIjoxNDE1NzU0MTMwfQ.vzGqGwaQOLKTzyykTv8vFdrNixtMvDsg2LjY9vzFPB4" \
-H "Host: example.org" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Cookie: "
Response
Headers
Status
201 Created
Body
{
"metadata": {
"guid": "b5b5748d-7659-4f22-aa15-c219947cd425",
"url": "/v2/services/b5b5748d-7659-4f22-aa15-c219947cd425",
"created_at": "2014-11-05T01:02:10+00:00",
"updated_at": null
},
"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": false,
"bindable": true,
"unique_id": null,
"extra": null,
"tags": [
],
"requires": [
],
"documentation_url": null,
"service_broker_guid": null,
"plan_updateable": false,
"service_plans_url": "/v2/services/b5b5748d-7659-4f22-aa15-c219947cd425/service_plans"
}
}