Skip to content

Obtain a New Authentication Token

POST
/auth/token

Use this endpoint to generate a new JWT (JSON Web Token) by providing valid client credentials (client_id and client_secret). The returned token must be included in the Authorization header as Bearer <token> for subsequent calls to authenticate and authorize access to the API.

Request Body

JSON
{
"client_id": "string",
"client_secret": "string"
}

Responses

A successfully generated access token.
application/json
JSON
{
"access_token": "string",
"expiry": 0
}

Samples

Powered by VitePress OpenAPI