Skip to main content
POST
/
api
/
v1
/
access-tokens
/
lookup
Lookup Global Access Token ID
curl --request POST \
  --url https://api.example.com/api/v1/access-tokens/lookup \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "accessToken": "<string>"
}
'
{
  "accessTokenId": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
accessToken
string
required
Minimum string length: 1

Response

Access token ID lookup successful. Returns a stable, non-sensitive identifier for the provided access token.

accessTokenId
string<uuid4>
required