This endpoint allows you to retrieve an API access token using your client_id and client_secret.
To authenticate:
Try it ▶Authorization.usernameAuthorization.passwordThe request must include the following body parameter:
grant_type: This is always set to client_credentialsHit Send ▶ and the response will contain an access_token, which you can use as a Bearer token to authenticate requests to other endpoints.
{
"access_token": "ACCESS_TOKEN",
"expires_in": 3600,
"token_type": "Bearer",
"scope": "read write"
}
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Always set to 'client_credentials'
client_credentials