Reports device events such as plug-in, plug-out, charging start / stop, faults, and alarms.
Related: for interpreting event_type=fault payloads, see the Fault Dictionary.
curl --request POST \
--url https://api.telluspower.example.com/v1/device/events \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"timestamp": "2025-03-15T10:36:00Z",
"event_type": "fault",
"connector_id": 1,
"data": {
"fault_code": 1001,
"fault_message": "Overcurrent protection",
"details": {
"current": 40.5,
"threshold": 32
}
}
}
'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.
plug_in, plug_out, start, stop, fault, alarm x >= 1Event-specific payload. For example:
plug_in: { vehicle_connected: boolean }fault: { fault_code: int, fault_message: string, details: object }start / stop: { reason: string }Event accepted.
curl --request POST \
--url https://api.telluspower.example.com/v1/device/events \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"timestamp": "2025-03-15T10:36:00Z",
"event_type": "fault",
"connector_id": 1,
"data": {
"fault_code": 1001,
"fault_message": "Overcurrent protection",
"details": {
"current": 40.5,
"threshold": 32
}
}
}
'