After a charging session ends, the charger uploads the complete charging record (CDR).
curl --request POST \
--url https://api.telluspower.example.com/v1/device/charging-records \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"record_id": "rec_9x8y7z6w",
"connector_id": 1,
"start_time": "2025-03-15T09:00:00Z",
"end_time": "2025-03-15T10:30:00Z",
"energy": 15.2,
"max_power": 7.2,
"avg_power": 6.8,
"cost": 12.16,
"meter_start": 12345.6,
"meter_end": 12360.8,
"vehicle_info": {
"vin": "LVXFA394XJ1234567",
"soc_start": 20,
"soc_end": 90
}
}
'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.
x >= 1Show child attributes
Record accepted.
curl --request POST \
--url https://api.telluspower.example.com/v1/device/charging-records \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"record_id": "rec_9x8y7z6w",
"connector_id": 1,
"start_time": "2025-03-15T09:00:00Z",
"end_time": "2025-03-15T10:30:00Z",
"energy": 15.2,
"max_power": 7.2,
"avg_power": 6.8,
"cost": 12.16,
"meter_start": 12345.6,
"meter_end": 12360.8,
"vehicle_info": {
"vin": "LVXFA394XJ1234567",
"soc_start": 20,
"soc_end": 90
}
}
'