cURL
curl --request POST \ --url https://api.telemax.com.au/api/authentication/token/user \ --header 'Content-Type: application/x-www-form-urlencoded' \ --data [email protected] \ --data password=secure_password123
{ "access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...", "token_type": "Bearer", "expires_in": 3600 }
Get access token via username/password combination. Uses the same credentials as the main Telemax account.
Standard and must keep it as it is.
Username
"[email protected]"
Password
"secure_password123"
Successful response
JWT access token
"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..."
"Bearer"
Token expiration time in seconds
3600
Was this page helpful?