Retrieve a Particular Service Plan
GET /v2/service_plans/:guid
Request
Route
GET /v2/service_plans/e380b147-bc6e-460b-bc0b-e0608ec8cbee
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.
|
|
|
|
Headers
cURL
curl "https://api.[your-domain.com]/v2/service_plans/e380b147-bc6e-460b-bc0b-e0608ec8cbee" -X GET \
-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTI0MiIsImVtYWlsIjoiZW1haWwtMTc0QHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0Mjc0ODA4NTd9.8o1apzlVsqo1r2EB_CzPBdAz0koeNAPzMjMtGmIrrpg" \
-H "Host: example.org" \
-H "Cookie: "
Response
Status
200 OK
Body
{
"metadata": {
"guid": "e380b147-bc6e-460b-bc0b-e0608ec8cbee",
"url": "/v2/service_plans/e380b147-bc6e-460b-bc0b-e0608ec8cbee",
"created_at": "2015-03-20T18:27:37Z",
"updated_at": null
},
"entity": {
"name": "name-1393",
"free": false,
"description": "desc-105",
"service_guid": "0815dc81-3b7d-45a3-8bd6-d5aa84dd1d7e",
"extra": null,
"unique_id": "cb210764-5c73-496a-9fd5-290dbe2c97cc",
"public": true,
"active": true,
"service_url": "/v2/services/0815dc81-3b7d-45a3-8bd6-d5aa84dd1d7e",
"service_instances_url": "/v2/service_plans/e380b147-bc6e-460b-bc0b-e0608ec8cbee/service_instances"
}
}
Headers