Overview
All API endpoints require authentication using an access token provided as a Bearer token in theAuthorization header.
Obtaining an Access Token
Submit yourclientId and clientSecret to the IAM endpoint using a POST request with client_credentials grant type.
Response
Access tokens expire after 300 seconds (5 minutes). Your application should request a new token when the current one expires.
Using the Access Token
Include the token in theAuthorization header for all subsequent API requests:
Token Lifecycle
| Field | Value | Description |
|---|---|---|
expires_in | 300 | Token validity in seconds (5 minutes) |
refresh_expires_in | 0 | No refresh token support; request a new token when expired |
token_type | Bearer | Use as a Bearer token in the Authorization header |

