Name | Description | Default | Valid Values | Example Values |
---|---|---|---|---|
guid | The guid of the service auth token. |
|
|
|
label | Human readable name for the auth token |
|
|
|
provider | Human readable name of service provider |
|
|
|
token | The secret auth token used for authenticating |
|
|
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: label, provider |
|
|
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.eyJ1c2VyX2lkIjoidWFhLWlkLTE1MCIsImVtYWlsIjoiZW1haWwtMTEzQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MTU3NTQxMzd9.ImWpS2hvqIWpG2JJVjyxhKNMlhdKth0Vw9G2u-GaoKg Host: example.org Cookie:
GET /v2/service_auth_tokens
q: provider:Face-Offer
curl "https://api.[your-domain.com]/v2/service_auth_tokens" -X GET \ -H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTE1MCIsImVtYWlsIjoiZW1haWwtMTEzQHNvbWVkb21haW4uY29tIiwic2NvcGUiOlsiY2xvdWRfY29udHJvbGxlci5hZG1pbiJdLCJhdWQiOlsiY2xvdWRfY29udHJvbGxlciJdLCJleHAiOjE0MTU3NTQxMzd9.ImWpS2hvqIWpG2JJVjyxhKNMlhdKth0Vw9G2u-GaoKg" \ -H "Host: example.org" \ -H "Cookie: "
Content-Type: application/json;charset=utf-8 X-VCAP-Request-ID: 55cf5bfd-3776-4cd4-9234-44e1238a7052 X-Cf-Warnings: Support+for+the+v1+Service+Broker+API+is+deprecated+and+will+be+removed+in+the+next+major+version+of+Cloud+Foundry.+Consider+upgrading+your+broker+to+implement+the+v2+Service+Broker+API. Content-Length: 448 X-Content-Type-Options: nosniff
200 OK
{ "total_results": 1, "total_pages": 1, "prev_url": null, "next_url": null, "resources": [ { "metadata": { "guid": "434726db-28d7-4e66-93bc-70323ff0c96a", "url": "/v2/service_auth_tokens/434726db-28d7-4e66-93bc-70323ff0c96a", "created_at": "2014-11-05T01:02:17+00:00", "updated_at": null }, "entity": { "label": "label-33", "provider": "Face-Offer" } } ] }