Exchange device_id + device_secret for a temporary Bearer token.
curl --request POST \
--url https://api.telluspower.example.com/v1/device/token \
--header 'Content-Type: application/json' \
--data '
{
"device_id": "<string>",
"device_secret": "<string>",
"grant_type": "client_credentials"
}
'{
"access_token": "<string>",
"token_type": "Bearer",
"expires_in": 123
}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/device/token \
--header 'Content-Type: application/json' \
--data '
{
"device_id": "<string>",
"device_secret": "<string>",
"grant_type": "client_credentials"
}
'{
"access_token": "<string>",
"token_type": "Bearer",
"expires_in": 123
}