Flowion Docs

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

NameInTypeDescription
charging_station_id*pathstring<uuid>ChargingStation id
pagequeryinteger<int32>1-indexed page number. Defaults to 1.
per_pagequeryinteger<int32>Meter readings per page, capped at 100. Defaults to 20.

Responses

StatusBodyDescription
200ListChargerMeterValuesResponseA 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.
401ErrorBodyMissing, invalid, or expired bearer token
403ErrorBodyThe caller is a member of the charging_station's organization but below the required role
404ErrorBodyNo 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

NameInTypeDescription
connector_id*pathstring<uuid>Connector id
pagequeryinteger<int32>1-indexed page number. Defaults to 1.
per_pagequeryinteger<int32>Readings per page, capped at 100. Defaults to 20.

Responses

StatusBodyDescription
200ListMeterValuesResponseA page of the connector's standalone meter readings (those belonging to no transaction), most recent first
401ErrorBodyMissing, invalid, or expired bearer token
404ErrorBodyNo connector with this id exists, or you cannot access its environment