GET
/
api
/
v2
/
teams
/
{team_id}
/
chargers
/
{charger_id}
/
metervalues
curl --request GET \
  --url https://cloud.volttime.com/api/v2/teams/{team_id}/chargers/{charger_id}/metervalues \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "date_from": "2025-03-12 13:49:24",
  "date_to": "2025-03-12 13:49:24",
  "context": "Trigger",
  "measurand": "RPM",
  "phase": "L2",
  "location": "EV",
  "unit": "Wh",
  "limit": 1,
  "order_by": "desc"
}'
{}

Authorizations

Authorization
string
header
required

See the documentation for more information.

Path Parameters

team_id
integer
required

The ID of the team.

charger_id
integer
required

The ID of the charger.

Body

application/json
date_from
string
required

Must be a valid date in the format <code>Y-m-d H:i:s</code>.

Example:

"2025-03-12 13:49:24"

date_to
string
required

Must be a valid date in the format <code>Y-m-d H:i:s</code>.

Example:

"2025-03-12 13:49:24"

context
enum<string>
Available options:
Interruption.Begin,
Interruption.End,
Other,
Sample.Clock,
Sample.Periodic,
Transaction.Begin,
Transaction.End,
Trigger
Example:

"Trigger"

measurand
enum<string>
Available options:
Current.Export,
Current.Import,
Current.Offered,
Energy.Active.Export.Register,
Energy.Active.Import.Register,
Energy.Reactive.Export.Register,
Energy.Reactive.Import.Register,
Energy.Active.Export.Interval,
Energy.Active.Import.Interval,
Energy.Reactive.Export.Interval,
Energy.Reactive.Import.Interval,
Frequency,
Power.Active.Export,
Power.Active.Import,
Power.Factor,
Power.Offered,
Power.Reactive.Export,
Power.Reactive.Import,
RPM,
SoC,
Temperature,
Voltage
Example:

"RPM"

phase
enum<string>
Available options:
L1,
L2,
L3,
N,
L1-N,
L2-N,
L3-N,
L1-L2,
L2-L3,
L3-L1
Example:

"L2"

location
enum<string>
Available options:
Body,
Inlet,
Cable,
Outlet,
EV,
Renewable
Example:

"EV"

unit
enum<string>
Available options:
Wh,
kWh,
varh,
kvarh,
W,
kW,
VA,
kVA,
var,
kvar,
A,
V,
Celsius,
Fahrenheit,
K,
Percent
Example:

"Wh"

limit
integer

Must not be greater than 10000.

Example:

1

order_by
enum<string>
Available options:
desc,
asc
Example:

"desc"

Response

200
application/json
List of metervalues

The response is of type object.