Skip to main content

Authentication & Authorization

Creating API Credentials

  • Generate client_id and client_secret in 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 the client_id.
  • grant_type (string, required): Must be client_credentials.
Sample Request:
Sample Response:

Using the Access Token

Include the access_token in the Authorization header for API requests: