Overview
This is the first step for any API call. Use yourapiClientId and apiClientSecret (Basic auth) to get a short-lived accessToken. That token is then sent as Authorization: Bearer ... to other endpoints.
Prerequisites
apiClientIdandapiClientSecret- Base URL:
{{ACCOUNT_URL}}(staging or production)
Request
Response (200)
Usage Tips
- Store
accessTokensecurely and reuse until it expires. - Do not expose client credentials in client-side code.
- Rotate credentials periodically.