cURL
curl --request POST \ --url https://api.telemax.com.au/api/authentication/token/api-key \ --header 'Content-Type: application/x-www-form-urlencoded' \ --data apiKey=your_api_key_here
{ "access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...", "token_type": "Bearer", "expires_in": 3600 }
Get access token via API keys.
Standard and must keep it as it is.
API key
"your_api_key_here"
Successful response
JWT access token
"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
"Bearer"
Token expiration time in seconds
3600
Was this page helpful?