Authentication
Authenticates a client using the client credentials and returns an access token to be used for further API requests.
Body
client_idstringRequiredExample:
The client ID assigned to the client.
your_client_idclient_secretstringRequiredExample:
The client secret assigned to the client.
your_client_secretgrant_typestringRequiredExample:
The type of grant being used, typically "client_credentials".
client_credentialsResponses
200
Successfully authenticated
application/json
access_tokenstringOptionalExample:
The access token to be used for further API requests.
abcdef123456token_typestringOptionalExample:
The type of token, typically "Bearer".
Bearerexpires_innumberOptionalExample:
The number of seconds until the token expires.
3600400
Invalid request.
401
Unauthorized - Invalid client credentials.
500
Internal server error.
post
/oauth2/tokenLast updated