Home
Version 3
ServiceAuthTokens (deprecated) API

ServiceAuthTokens (deprecated) API

List all Service Auth Tokens (deprecated)

GET /v2/service_auth_tokens

Fields

Name Description Default Valid Values Example Values
guid The guid of the service auth token.
label Human readable name for the auth token
  • Nic-Token
provider Human readable name of service provider
  • Face-Offer
token The secret auth token used for authenticating

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: label, provider
  • 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.eyJ1c2VyX2lkIjoidWFhLWlkLTExOSIsImVtYWlsIjoiZW1haWwtOTBAc29tZWRvbWFpbi5jb20iLCJzY29wZSI6WyJjbG91ZF9jb250cm9sbGVyLmFkbWluIl0sImF1ZCI6WyJjbG91ZF9jb250cm9sbGVyIl0sImV4cCI6MTQyNDMxMDEyNX0.YIHikIeKBy4bIFo-dyLICMSaqNQw4FYoX-1Wvcct1EY
Host: example.org
Cookie: 

Route

GET /v2/service_auth_tokens

cURL

curl "https://api.[your-domain.com]/v2/service_auth_tokens" -X GET \
	-H "Authorization: bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoidWFhLWlkLTExOSIsImVtYWlsIjoiZW1haWwtOTBAc29tZWRvbWFpbi5jb20iLCJzY29wZSI6WyJjbG91ZF9jb250cm9sbGVyLmFkbWluIl0sImF1ZCI6WyJjbG91ZF9jb250cm9sbGVyIl0sImV4cCI6MTQyNDMxMDEyNX0.YIHikIeKBy4bIFo-dyLICMSaqNQw4FYoX-1Wvcct1EY" \
	-H "Host: example.org" \
	-H "Cookie: "

Response

Headers

Content-Type: application/json;charset=utf-8
X-VCAP-Request-ID: 971a357c-ac15-435c-a811-96cf4c82eebd
X-Cf-Warnings: Support+for+the+v1+Service+Broker+API+is+deprecated+and+will+re+removed+in+the+next+major+version+of+Cloud+Foundry.+Consider+upgrading+your+broker+to+implement+the+v2+Service+Broker+API.
Content-Length: 1122
X-Content-Type-Options: nosniff

Status

200 OK

Body

{
  "total_results": 3,
  "total_pages": 1,
  "prev_url": null,
  "next_url": null,
  "resources": [
    {
      "metadata": {
        "guid": "3d9b7c32-f1c3-4273-a373-1dcd6a4a559f",
        "url": "/v2/service_auth_tokens/3d9b7c32-f1c3-4273-a373-1dcd6a4a559f",
        "created_at": "2015-02-12T01:42:05Z",
        "updated_at": null
      },
      "entity": {
        "label": "label-34",
        "provider": "provider-23"
      }
    },
    {
      "metadata": {
        "guid": "80559728-28ba-4b18-93b4-2061897e6a68",
        "url": "/v2/service_auth_tokens/80559728-28ba-4b18-93b4-2061897e6a68",
        "created_at": "2015-02-12T01:42:05Z",
        "updated_at": null
      },
      "entity": {
        "label": "label-35",
        "provider": "provider-24"
      }
    },
    {
      "metadata": {
        "guid": "4e163de8-0741-42de-84cf-616f691c7537",
        "url": "/v2/service_auth_tokens/4e163de8-0741-42de-84cf-616f691c7537",
        "created_at": "2015-02-12T01:42:05Z",
        "updated_at": null
      },
      "entity": {
        "label": "label-36",
        "provider": "provider-25"
      }
    }
  ]
}