Skip to main content
POST
cURL

Body

application/x-www-form-urlencoded

OAuth get token request. Client credentials are sent in the Authorization header using Basic authentication.

grant_type
enum<string>
required

Must be set to "client_credentials"

Available options:
client_credentials
Example:

"client_credentials"

Response

successful operation

access_token
string
required

A new access token that is used to authenticate against resources that belong to the app itself.

Example:

"gTm0p62yYXFiB1rOdhV0TsNOinC2V2P1CMaAtojkO9JEGbv3i5"

token_type
string
required

The type of token, always "Bearer"

Example:

"Bearer"

expires_in
integer
required

The lifetime of the access token, in seconds. Default is 3600.

Example:

3599