v1
latestOpenAPI 3.0.12026-07-243686491.1 MBCharge Points
Retrieve network data consumption for a charge point
Returns a daily network data-usage histogram and total for the charge point. Defaults to the last 30 days. Required scope: charge-points:read
get/api/v1/charge-points/{chargePointId}/data-consumption
Path parameters
chargePointIdinteger required
Query parameters
startAtstring date nullable
Start of the reporting period (YYYY-MM-DD, UTC). Defaults to 30 days before endAt.
Example:2024-01-01
endAtstring date nullable
End of the reporting period (YYYY-MM-DD, UTC). Defaults to today.
Example:2024-01-31
Response
Network data consumption for the charge point
Example response
{
"startAt": "2024-01-01",
"endAt": "2024-01-31",
"totalConsumption": {
"bytes": 1048576,
"megabytes": 1.05
},
"consumptions": [
{
"date": "2024-01-01",
"bytes": 524288,
"megabytes": 0.52
}
]
}