Returns the transactions of a charger
curl --request GET \
--url https://cloud.volttime.com/api/v2/teams/{team_id}/chargers/{charger_id}/transactions \
--header 'Authorization: Bearer <token>'Show OrderBy
asc
descShow Transaction
Show TxStopReason
EmergencyStop
EVDisconnected
HardReset
Local
Other
PowerLoss
Reboot
Remote
SoftReset
UnlockCommand
DeAuthorized{
"data": [
{
"id": 2,
"charger_id": 2,
"charger_connector_id": 2,
"reservation_id": null,
"id_tag": "XXXXX",
"meter_start": 1191,
"meter_stop": 1198,
"total_kwh": "0.01",
"start_cost": "0.0000",
"kwh_cost": "0.0000",
"total_kwh_cost": "0.0000",
"total_cost": "0.00",
"started_at": "2023-11-14T12:12:05.000000Z",
"stopped_at": "2023-11-14T13:50:09.000000Z",
"stop_reason": "EVDisconnected",
"created_at": "2023-11-14T12:12:06.000000Z",
"updated_at": "2023-11-14T13:50:17.000000Z"
},
{
"id": 3,
"charger_id": 2,
"charger_connector_id": 2,
"reservation_id": null,
"id_tag": "XXXXX",
"meter_start": 1198,
"meter_stop": 1198,
"total_kwh": "0.00",
"start_cost": "0.0000",
"kwh_cost": "0.0000",
"total_kwh_cost": "0.0000",
"total_cost": "0.00",
"started_at": "2023-11-14T13:50:09.000000Z",
"stopped_at": "2023-11-14T13:50:09.000000Z",
"stop_reason": "EVDisconnected",
"created_at": "2023-11-14T13:50:19.000000Z",
"updated_at": "2023-11-14T13:50:20.000000Z"
},
]
// + Pagination
}
Was this page helpful?
curl --request GET \
--url https://cloud.volttime.com/api/v2/teams/{team_id}/chargers/{charger_id}/transactions \
--header 'Authorization: Bearer <token>'