Skip to main content
POST
/
device
/
token
Obtain charger access 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.

Body

application/json
device_id
string
required
device_secret
string
required
grant_type
enum<string>
required
Available options:
client_credentials

Response

Access token issued.

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

Token validity period (seconds). Always 86400.