Exchange client_id and client_secret for a Bearer access token.
Tokens are valid for 24 hours (86,400 seconds).
curl --request POST \
--url https://api.telluspower.example.com/v1/operator/oauth/token \
--header 'Content-Type: application/json' \
--data '
{
"client_id": "cpms_123",
"client_secret": "sec_456",
"grant_type": "client_credentials"
}
'{
"access_token": "eyJhbGciOiJIUzI1NiIs...",
"token_type": "Bearer",
"expires_in": 86400
}Documentation Index
Fetch the complete documentation index at: https://developers.telluspowergroup.com/llms.txt
Use this file to discover all available pages before exploring further.
curl --request POST \
--url https://api.telluspower.example.com/v1/operator/oauth/token \
--header 'Content-Type: application/json' \
--data '
{
"client_id": "cpms_123",
"client_secret": "sec_456",
"grant_type": "client_credentials"
}
'{
"access_token": "eyJhbGciOiJIUzI1NiIs...",
"token_type": "Bearer",
"expires_in": 86400
}