Skip to main content

Check which tokens are valid

POST 

<your-unleash-url>/edge/validate

This operation accepts a list of tokens to validate. Unleash will validate each token you provide. For each valid token you provide, Unleash will return the token along with its type and which projects it has access to.

Request

Responses

validatedEdgeTokensSchema
curl -L '<your-unleash-url>/edge/validate' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-d '{
"tokens": [
"aproject:development.randomstring",
"[]:production.randomstring"
]
}'
Request Collapse all
Base URL
<your-unleash-url>
Body required
{
  "tokens": [
    "aproject:development.randomstring",
    "[]:production.randomstring"
  ]
}
ResponseClear

Click the Send API Request button above and see the response here!