Access

Create an access token to begin using our APIs.

Request an access token

OAuth endpoint to exchange your access key ID and access key secret for an access token.

Request
Request Body schema: application/x-www-form-urlencoded
grant_type
string
Value: "client_credentials"
client_id
string

Access key ID

client_secret
string

Access key secret

scope
string

The access key scope

Responses
200

OK - A successful access token response as per RFC6749

400

Bad request - An unsuccessful access token response as per RFC6749

post/connect/token
Request samples
application/x-www-form-urlencoded
grant_type=client_credentials&client_id=ack_clckqmmnyfiupexjew7shh5ahe&client_secret=Pmg36sDWQ9WxtPR3
Response samples
application/json
{
  • "access_token": "2YotnFZFEjr1zCsicMWpAA",
  • "token_type": "example",
  • "expires_in": 3600
}