latestOpenAPI 3.0.02026-08-1019920.5 KB

8dcac887e3f3

Authentication

Get Access Token

Use your CLIENT_ID and CLIENT_SECRET to obtain a temporary ACCESS_TOKEN.

post/api-clients/token

Request body

client_idstring
client_secretstring

Example request

{
  "client_id": "CLIENT_ID",
  "client_secret": "CLIENT_SECRET"
}

Response

Access token response

access_tokenstring
token_typestring
expires_ininteger

Example response

{
  "token_type": "bearer",
  "expires_in": 86400
}