v1

latestOpenAPI 3.1.02026-08-047777149.4 KB

Get auth token

Obtain an access token using client credentials. No bearer auth required.

post/api/v3/token/

Request body

client_idstring required

OAuth client ID

client_secretstring required

OAuth client secret

grant_type'client_credentials' required

Grant type

Response

Token issued successfully

access_tokenstring

JWT access token

refresh_tokenstring

Refresh token for obtaining new access token

token_typestring
expires_ininteger

Seconds until access token expires

Example response

{
  "token_type": "Bearer"
}