POST
/
auth
/
token
curl --request POST \
  --url https://api.charp.ai/auth/token \
  --header 'Content-Type: application/json' \
  --data '{
  "client_id": "<string>",
  "client_secret": "<string>"
}'
{
  "access_token": "<string>",
  "token_type": "<string>",
  "expires_in": 123,
  "refresh_token": "<string>"
}

Body

application/json

Client credentials

The body is of type object.

Response

200
application/json

Access token generated successfully

The response is of type object.