Developer Guide
Get Access Token
To request an access token, make a POST call to the token URL.
curl --request POST \
--url '{yourTokenUrl}' \
--header 'content-type: application/x-www-form-urlencoded' \
--data grant_type=client_credentials \
--data client_id={yourClientId} \
--data client_secret={yourClientSecret} \
--data audience={yourAudience}
| Parameter name | Description |
| grant_type | Set this to “client_credentials” |
| client_id | Your Client Id circulated through Api provisioning email |
| client_secret | Your Client secret circulated through Api provisioning email |
| audience | Your audience for the token, circulated through Api provisioning email |