Sites
Chargers
Tariffs
Chargers > Actions
Chargers > Connectors
Chargers > Licenses
Chargers > Proxy
Chargers > Settings
Meters > Chargee
Products
Providers
Sites > Chargers
Sites > Connectors
Sites > Smart Charging
Sites > Teams
- GETGet all teams with access to a site
- GETGet a specific team's access to a site
- DELRemove a team's access to a site
- POSTGrant sensitive data access to a team
- DELRevoke sensitive data access from a team
- PUTModify asset access for a team
- POSTTransfer site ownership to a team
- POSTRequest sensitive data access for a team
- POSTCreate an invite
- POSTAccept an invite
[Deprecated] Chargers
[Deprecated] Commands
[Deprecated] Datapoints
[Deprecated] Sites
[Deprecated] Teams
[Deprecated] Users
Get Transactions
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>'
Request
The start date of the period to retrieve the transactions for
The end date of the period to retrieve the transactions for
The amount of meter values to retrieve, limited to 10000 per request
The order of the transactions
Show OrderBy
Show OrderBy
asc
desc
The page number to return
Response
Array of transactions
Show Transaction
Show Transaction
The identifier of the transaction
The identifier of the charger this transaction belongs to
The identifier of the connector this transaction belongs to
The identifier of the reservation this transaction belongs to
The identifier of the RFID card used for the transaction
The meter value at the start of the transaction
The meter value at the end of the transaction
The total amount of kWh charged
The cost for starting the transaction
The cost per kWh charged
The total cost of the kWh charged
The total cost of the transaction
The date and time the transaction started
The date and time the transaction stopped
The reason the transaction stopped
Show TxStopReason
Show TxStopReason
EmergencyStop
EVDisconnected
HardReset
Local
Other
PowerLoss
Reboot
Remote
SoftReset
UnlockCommand
DeAuthorized
The timestamp of when the meter value was created
The timestamp of when the meter value was last updated
Array of transactions
Show Transaction
Show Transaction
The identifier of the transaction
The identifier of the charger this transaction belongs to
The identifier of the connector this transaction belongs to
The identifier of the reservation this transaction belongs to
The identifier of the RFID card used for the transaction
The meter value at the start of the transaction
The meter value at the end of the transaction
The total amount of kWh charged
The cost for starting the transaction
The cost per kWh charged
The total cost of the kWh charged
The total cost of the transaction
The date and time the transaction started
The date and time the transaction stopped
The reason the transaction stopped
Show TxStopReason
Show TxStopReason
EmergencyStop
EVDisconnected
HardReset
Local
Other
PowerLoss
Reboot
Remote
SoftReset
UnlockCommand
DeAuthorized
The timestamp of when the meter value was created
The timestamp of when the meter value was last updated
{
"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>'