Body
The grant type for the OAuth token request. Must be “client_credentials”.
The scope of access requested. Use ”*”.
Response
The OAuth access token to use for authenticated requests
The type of token (usually “Bearer”)
Token expiration time in seconds
curl --request POST \
--url /oauth/token \
--header 'Content-Type: multipart/form-data' \
--form 'grant_type=client_credentials' \
--form 'client_id={{client_id}}' \
--form 'client_secret={{client_secret}}' \
--form 'scope=*'
{
"access_token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9...",
"token_type": "Bearer",
"expires_in": 3600
}