Reports the execution result of a previously received command.
curl --request POST \
--url https://api.telluspower.example.com/v1/device/command-status \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"command_id": "cmd_5678",
"status": "completed",
"message": "Charging finished",
"timestamp": "2025-03-15T11:05:00Z",
"details": {
"energy_delivered": 7,
"duration": 3600
}
}
'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.
Charger-side bearer token. Obtained by exchanging device_id and
device_secret (issued at registration) at /v1/device/token.
Valid for 24 hours.
Status accepted.
curl --request POST \
--url https://api.telluspower.example.com/v1/device/command-status \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"command_id": "cmd_5678",
"status": "completed",
"message": "Charging finished",
"timestamp": "2025-03-15T11:05:00Z",
"details": {
"energy_delivered": 7,
"duration": 3600
}
}
'