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 |
|
|
|
long_description | A longer description of the service |
|
|
|
info_url | A url that points to an info page for the service |
|
|
|
documentation_url | A url that points to a documentation page for the service |
|
|
|
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 |
|
|
|
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 |
|
|
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, label, provider, service_broker_guid |
|
|
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. |
|
|
Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTEyIiwiZW1haWwiOiJlbWFpbC0xMkBzb21lZG9tYWluLmNvbSIsInNjb3BlIjpbImNsb3VkX2NvbnRyb2xsZXIuYWRtaW4iXSwiYXVkIjpbImNsb3VkX2NvbnRyb2xsZXIiXSwiZXhwIjoxNDE1NzU0MTMwfQ.7pZaBNW3mfsqu0_7UqE9fXn_pUvUcophpItDCFJOWDQ Host: example.org Cookie:
GET /v2/services
curl "https://api.[your-domain.com]/v2/services" -X GET \ -H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTEyIiwiZW1haWwiOiJlbWFpbC0xMkBzb21lZG9tYWluLmNvbSIsInNjb3BlIjpbImNsb3VkX2NvbnRyb2xsZXIuYWRtaW4iXSwiYXVkIjpbImNsb3VkX2NvbnRyb2xsZXIiXSwiZXhwIjoxNDE1NzU0MTMwfQ.7pZaBNW3mfsqu0_7UqE9fXn_pUvUcophpItDCFJOWDQ" \ -H "Host: example.org" \ -H "Cookie: "
Content-Type: application/json;charset=utf-8 X-VCAP-Request-ID: 7138b90e-7830-4edc-bbea-e65ec0bc552f Content-Length: 1040 X-Content-Type-Options: nosniff
200 OK
{ "total_results": 1, "total_pages": 1, "prev_url": null, "next_url": null, "resources": [ { "metadata": { "guid": "15c4c8a7-72bf-4d9f-996b-3acf4ae4452e", "url": "/v2/services/15c4c8a7-72bf-4d9f-996b-3acf4ae4452e", "created_at": "2014-11-05T01:02:10+00:00", "updated_at": null }, "entity": { "label": "label-11", "provider": "provider-11", "url": "https://foo.com/url-13", "description": "desc-27", "long_description": null, "version": "version-11", "info_url": null, "active": true, "bindable": true, "unique_id": "af4ee20a-a03e-4e03-8d8e-9491705df9f5", "extra": null, "tags": [ ], "requires": [ ], "documentation_url": null, "service_broker_guid": "812a2a8d-2698-4f19-92f4-149d0bab8872", "plan_updateable": false, "service_plans_url": "/v2/services/15c4c8a7-72bf-4d9f-996b-3acf4ae4452e/service_plans" } } ] }