Home
Version 3
Services API

Services API

List all Service Plans for the Service

GET /v2/services/:guid/service_plans

Request

Route

GET /v2/services/b094aaa0-1ee3-4b58-9d5f-8b2844fc4295/service_plans

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
(Note that filtering on service_guid will return an empty list if you specify anything other than the guid included in the path.)
  • 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

Body

Name Description Default Valid Values Example Values
guid The guid of the Service.

Headers

Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTkiLCJlbWFpbCI6ImVtYWlsLTlAc29tZWRvbWFpbi5jb20iLCJzY29wZSI6WyJjbG91ZF9jb250cm9sbGVyLmFkbWluIl0sImF1ZCI6WyJjbG91ZF9jb250cm9sbGVyIl0sImV4cCI6MTQ2MDUwNjYzNX0.OvbxbHiX38c-UidqcOPTcFWq481_44k5WLsA_6luIBY
Host: example.org
Cookie: 

cURL

curl "https://api.[your-domain.com]/v2/services/b094aaa0-1ee3-4b58-9d5f-8b2844fc4295/service_plans" -X GET \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTkiLCJlbWFpbCI6ImVtYWlsLTlAc29tZWRvbWFpbi5jb20iLCJzY29wZSI6WyJjbG91ZF9jb250cm9sbGVyLmFkbWluIl0sImF1ZCI6WyJjbG91ZF9jb250cm9sbGVyIl0sImV4cCI6MTQ2MDUwNjYzNX0.OvbxbHiX38c-UidqcOPTcFWq481_44k5WLsA_6luIBY" \
	-H "Host: example.org" \
	-H "Cookie: "

Response

Status

200 OK

Body

{
  "total_results": 1,
  "total_pages": 1,
  "prev_url": null,
  "next_url": null,
  "resources": [
    {
      "metadata": {
        "guid": "0731f0ed-2bd4-4789-b953-b72a3afe51a0",
        "url": "/v2/service_plans/0731f0ed-2bd4-4789-b953-b72a3afe51a0",
        "created_at": "2016-04-06T00:17:15Z",
        "updated_at": null
      },
      "entity": {
        "name": "name-41",
        "free": false,
        "description": "desc-2",
        "service_guid": "b094aaa0-1ee3-4b58-9d5f-8b2844fc4295",
        "extra": null,
        "unique_id": "72903985-1062-4e8f-8bb9-19508f7a455c",
        "public": true,
        "active": true,
        "service_url": "/v2/services/b094aaa0-1ee3-4b58-9d5f-8b2844fc4295",
        "service_instances_url": "/v2/service_plans/0731f0ed-2bd4-4789-b953-b72a3afe51a0/service_instances"
      }
    }
  ]
}

Headers

Content-Type: application/json;charset=utf-8
X-VCAP-Request-ID: 
Content-Length: 838
X-Content-Type-Options: nosniff