Home
Version 3
Service Plans API

Service Plans API

List all Service Plans

GET /v2/service_plans

Fields

Name Description Default Valid Values Example Values
guid The guid of the service plan
name The name of the service plan
  • 100mb
free A boolean describing if the service plan is free
  • true
  • false
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
  • {"cost": "$2.00"}
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
  • deadbeef
active A boolean that determines whether plans can be used to create new instances.
  • true
  • false

Parameters

Name Description Valid Values Example Values
q Parameters used to filter the result set.
Format queries as <filter><op><value>
Valid ops: : >= <= < > IN
Valid filters: active, service_guid, service_instance_guid, service_broker_guid
  • q=filter:value
  • q=filter>value
  • q=filter IN a,b,c
page Page of results to fetch
results-per-page Number of results per page
order-direction Order of the results: asc (default) or desc
inline-relations-depth 0 - don't inline any relations and return URLs. Otherwise, inline to depth N.
orphan-relations 0 - de-duplicate object entries in response
exclude-relations comma-delimited list of relations to drop from response
include-relations comma-delimited list of the only relations to include in response

Request

Headers

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTIwOCIsImVtYWlsIjoiZW1haWwtMTUyQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MTY1MjY3MDV9.oEfcBoDzE_CGo1CLrnqMJJcBwfW-Ma1km1UuLMtm3bE
Host: example.org
Cookie: 

Route

GET /v2/service_plans

cURL

curl "https://api.[your-domain.com]/v2/service_plans" -X GET \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTIwOCIsImVtYWlsIjoiZW1haWwtMTUyQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MTY1MjY3MDV9.oEfcBoDzE_CGo1CLrnqMJJcBwfW-Ma1km1UuLMtm3bE" \
	-H "Host: example.org" \
	-H "Cookie: "

Response

Headers

Content-Type: application/json;charset=utf-8
X-VCAP-Request-ID: 1918bba1-a7a6-4941-bd5e-5484f08f336b
Content-Length: 845
X-Content-Type-Options: nosniff

Status

200 OK

Body

{
  "total_results": 1,
  "total_pages": 1,
  "prev_url": null,
  "next_url": null,
  "resources": [
    {
      "metadata": {
        "guid": "489130f7-7ec5-4dbb-97ac-284cebf403e2",
        "url": "/v2/service_plans/489130f7-7ec5-4dbb-97ac-284cebf403e2",
        "created_at": "2014-11-13T23:38:25+00:00",
        "updated_at": null
      },
      "entity": {
        "name": "name-756",
        "free": false,
        "description": "desc-45",
        "service_guid": "9b55c175-4927-4f9f-83d8-de312350fa6c",
        "extra": null,
        "unique_id": "1a6b0c7d-5069-4044-87a3-4bfd0660c1d8",
        "public": true,
        "active": true,
        "service_url": "/v2/services/9b55c175-4927-4f9f-83d8-de312350fa6c",
        "service_instances_url": "/v2/service_plans/489130f7-7ec5-4dbb-97ac-284cebf403e2/service_instances"
      }
    }
  ]
}