Skip to main content
POST
/
device
/
command-status
Report command status
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.

Authorizations

Authorization
string
header
required

Charger-side bearer token. Obtained by exchanging device_id and device_secret (issued at registration) at /v1/device/token. Valid for 24 hours.

Body

application/json
command_id
string
required
status
enum<string>
required
Available options:
accepted,
rejected,
completed,
failed
timestamp
string<date-time>
required
message
string
details
object

Additional execution details (e.g., { energy_delivered, duration }).

Response

200

Status accepted.