Creates a Bearer Token
POST/api/identity/tokens
This is the starting point to all API calls, as this response contains the Bearer token needed for the Authorization Header of all other API calls.
Place the access_token
in the Authorization
Header in the Bearer Scheme, i.e. Bearer jwtgoeshere
.
Create a new access_token
before the expires_in
expires on the current one.
This route is heavily rate limited to combat abuse.
Request
Responses
- 200
- 400
- 429
- 500
Returns the token response
Bad Request: Invalid parameters.
Rate limit exceeded. Too many requests.
Internal Server Error: An unexpected error occurred.