cURL
curl --request POST \ --url https://api.example.com/api/oauth/api-token \ --header 'Authorization: Bearer <token>'
{ "api_token": "<string>", "token_type": "bearer", "expires_in": 3600 }
Create api_token based on client_id and secret_key from credentials.
base64(client_id:secret_key)
OK
Response of Api Token
expires_in in seconds
Was this page helpful?