v1

latestSwagger 2.02026-08-06291030.8 KB
Auth

Obtain an OAuth2 access token. Tokens last 365 days you must refresh the token before that time for you application to continue to function. Rate limit to 10 calls per minute.

Login using the client ID and client secret to receive an access token for API requests.

post/v1/auth/token

Request body

client_idstring required

Unique identifier for the client.

client_secretstring required

Confidential key for the client.

Response

Access token generated successfully.

access_tokenstring

The JWT token to be used for subsequent API requests.

token_typestring

The type of the token issued.

expires_ininteger

Time in seconds until the token expires.

Example response

{
  "token_type": "Bearer",
  "expires_in": 3600
}