This endpoint allows you to retrieve an API access token using your client_id
and client_secret
.
To authenticate:
Try it ▶
Authorization.username
Authorization.password
The request must include the following body parameter:
grant_type
: This is always set to client_credentials
Hit 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
.
Access token retrieved successfully
The response is of type object
.