cURL
curl --request POST \ --url https://api.aspect-dev.systems/v1/oauth/token \ --header 'Content-Type: application/json' \ --data ' { "grant_type": "client_credentials", "client_id": "<string>", "client_secret": "<string>" } '
{ "token_type": "Bearer", "expires_in": 2592000, "access_token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9..." }
Obtain an access token used to authenticate API requests using Client Credentials provided by Aspect Systems.
The token has an expiration of 30 days.
client_credentials
Bearer
2592000
eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9...