Exchange OAuth2 client credentials for an access token. Use the Client Credentials grant type with your client ID and secret. The token is used in the Authorization: Bearer header for subsequent API calls.
Send as application/x-www-form-urlencoded:
| Parameter | Type | Required | Description |
|---|---|---|---|
grant_type | string | Yes | Must be client_credentials |
client_id | string | Yes | Your OAuth2 client ID |
client_secret | string | Yes | Your OAuth2 client secret |
scope | string | No | Space-separated list of scopes to request. If omitted, all allowed scopes for the client will be granted. |
Returns an access token with expiry. Use the token in the Authorization: Bearer {access_token} header for API requests.
Exchange OAuth2 client credentials for an access token. Use the Client Credentials grant type with your client ID and secret. The token is used in the Authorization: Bearer header for subsequent API calls.
Send as application/x-www-form-urlencoded:
| Parameter | Type | Required | Description |
|---|---|---|---|
grant_type | string | Yes | Must be client_credentials |
client_id | string | Yes | Your OAuth2 client ID |
client_secret | string | Yes | Your OAuth2 client secret |
scope | string | No | Space-separated list of scopes to request. If omitted, all allowed scopes for the client will be granted. |
Returns an access token with expiry. Use the token in the Authorization: Bearer {access_token} header for API requests.