Authentication & Authorization
Creating API Credentials
- Generate
client_idandclient_secretin the User Management Dashboard under API Keys.
Token Retrieval
- Endpoint:
POST /auth/token - Headers:
Content-Type: application/x-www-form-urlencoded- Body Parameters:
client_id(string, required): Generated in the API Keys section.client_secret(string, required): Secret key associated with theclient_id.grant_type(string, required): Must beclient_credentials.
Using the Access Token
Include theaccess_token in the Authorization header for API requests:
