Updating a Service Plan (deprecated)
PUT /v2/service_plans
Request
Route
PUT /v2/service_plans/c2f9ea2e-5498-44d6-b8d5-c0c2a80cf905
Body
Name |
Description |
Default |
Valid Values |
Example Values |
guid
|
The guid of the service plan
|
|
|
|
name
|
The name of the service plan
|
|
|
|
free
|
A boolean describing if the service plan is free
|
|
|
|
description
|
A description of the service plan
|
|
|
- Let's you put data in your database!
|
extra
|
A JSON string with additional data about the plan
|
|
|
|
unique_id
|
A guid for the service plan in the service broker (not the same as the cloud controller guid)
|
|
|
|
public
|
A boolean describing that the plan is visible to the all users
|
true
|
|
|
service_guid
|
The guid of the related service
|
|
|
|
active
|
A boolean that determines whether plans can be used to create new instances.
|
|
|
|
{
"name": "100mb",
"free": true,
"description": "Let's you put data in your database!",
"service_guid": "4c3037ad-dc98-41d7-ab92-25c7a7b97fe6"
}
Headers
cURL
curl "https://api.[your-domain.com]/v2/service_plans/c2f9ea2e-5498-44d6-b8d5-c0c2a80cf905" -d '{
"name": "100mb",
"free": true,
"description": "Let\u0027s you put data in your database!",
"service_guid": "4c3037ad-dc98-41d7-ab92-25c7a7b97fe6"
}' -X PUT \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTM5MCIsImVtYWlsIjoiZW1haWwtMjkyQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MjU5NDg2ODB9.eIHWNHRxLtO4OaPXE6I3jFiCCaVAOOEQO37r8cliuUc" \
-H "Host: example.org" \
-H "Content-Type: application/x-www-form-urlencoded" \
-H "Cookie: "
Response
Status
201 Created
Body
{
"metadata": {
"guid": "c2f9ea2e-5498-44d6-b8d5-c0c2a80cf905",
"url": "/v2/service_plans/c2f9ea2e-5498-44d6-b8d5-c0c2a80cf905",
"created_at": "2015-03-03T00:51:20Z",
"updated_at": "2015-03-03T00:51:20Z"
},
"entity": {
"name": "100mb",
"free": true,
"description": "Let's you put data in your database!",
"service_guid": "4c3037ad-dc98-41d7-ab92-25c7a7b97fe6",
"extra": null,
"unique_id": "2a50c6e8-c8dd-432c-b8fb-61adc232811a",
"public": true,
"active": true,
"service_url": "/v2/services/4c3037ad-dc98-41d7-ab92-25c7a7b97fe6",
"service_instances_url": "/v2/service_plans/c2f9ea2e-5498-44d6-b8d5-c0c2a80cf905/service_instances"
}
}
Headers