Meter Values
Standalone (non-transaction) meter readings — a connector's main-meter or no-session readings.
2 endpoints
Lists a charging_station's standalone meter readings across every connector, paginated, most recent first.
get/v1/charging-stations/{charging_station_id}/meter-valuesRequires a bearer token
Parameters
| Name | In | Type | Description |
|---|---|---|---|
| charging_station_id* | path | string<uuid> | ChargingStation id |
| page | query | integer<int32> | 1-indexed page number. Defaults to 1. |
| per_page | query | integer<int32> | Meter readings per page, capped at 100. Defaults to 20. |
Responses
| Status | Body | Description |
|---|---|---|
| 200 | ListChargerMeterValuesResponse | A page of the charging_station's standalone meter readings (those belonging to no transaction) across every connector and its main power meter, most recent first. A reading with a null evse_id and connector_number came from the main power meter, which measures the station as a whole. |
| 401 | ErrorBody | Missing, invalid, or expired bearer token |
| 403 | ErrorBody | The caller is a member of the charging_station's organization but below the required role |
| 404 | ErrorBody | No charging_station with this id exists, or you cannot access its environment |
Lists a connector's standalone (non-transaction) meter readings, paginated, most recent first.
get/v1/connectors/{connector_id}/meter-valuesRequires a bearer token
Parameters
| Name | In | Type | Description |
|---|---|---|---|
| connector_id* | path | string<uuid> | Connector id |
| page | query | integer<int32> | 1-indexed page number. Defaults to 1. |
| per_page | query | integer<int32> | Readings per page, capped at 100. Defaults to 20. |
Responses
| Status | Body | Description |
|---|---|---|
| 200 | ListMeterValuesResponse | A page of the connector's standalone meter readings (those belonging to no transaction), most recent first |
| 401 | ErrorBody | Missing, invalid, or expired bearer token |
| 404 | ErrorBody | No connector with this id exists, or you cannot access its environment |