Skip to main content
POST
/
operator
/
oauth
/
token
Obtain an operator access token
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.

Body

application/json
client_id
string
required
client_secret
string
required
grant_type
enum<string>
required
Available options:
client_credentials

Response

Token issued.

access_token
string
required
token_type
enum<string>
required
Available options:
Bearer
expires_in
integer
required

Token validity period (seconds). Always 86400.