Skip to main content
Our API uses M2M clients to authenticate your application. Each M2M client has a client_id and client_secret, and uses the OAuth2 client credentials flow to obtain a short-lived access token.

Obtain an access token

POST /oauth2/token
string
required
Must be application/x-www-form-urlencoded.
string
required
Must be client_credentials.
string
required
Your M2M client ID.
string
required
Your M2M client secret.

Use the token

Include the token in the Authorization header of every API request:
string
required
Bearer YOUR_ACCESS_TOKEN
Tokens expire after 3600 seconds. If you receive a 401 Unauthorized, request a new token. Consider refreshing proactively before expiry to avoid interruptions.