Skip to main content
POST
Generate OAuth2 client credentials token

Body

application/json
client_id
string
required

Unique identifier of the API client issued during registration

Required string length: 1 - 128
Examples:

"5gtyhu78ujmlko90iikmjunbh"

"1example23456789abcdefghijk"

client_secret
string<password>
required
write-only

Secret key associated with the client_id, used to authenticate the client

Required string length: 1 - 64
Example:

"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ+/="

Response

Successful Response

access_token
string
required

OAuth2 access token that must be used to authorize API requests

Minimum string length: 1
Example:

"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."

expires_in
integer
required

Lifetime of the access token in seconds

Examples:

3600

7200