Setup and Config
Prerequisites
Steps
Example of requesting token:
curl --request POST \
--url 'https://TOKEN_URL/oauth2/token' \
--header 'content-type: application/x-www-form-urlencoded' \
--data grant_type=client_credentials \
--data client_id=CLIENT_ID \
--data client_secret=CLIENT_SECRET \
--data scope="<scopes>"Example response:
{
"access_token": "eyJz93a...k4laUWw",
"token_type": "Bearer",
"expires_in": 86400
}Call API
Last updated
