Chargers
Tariffs
Chargers > Actions
Chargers > Connectors
Chargers > Settings
Sites > Chargers
Sites > Connectors
Sites > Smart Charging
[Deprecated] Chargers
[Deprecated] Commands
[Deprecated] Datapoints
[Deprecated] Sites
[Deprecated] Teams
[Deprecated] Users
Get Meters
Returns all the meters that the specified team has access to
GET
/
teams
/
{team_id}
/
meters
curl --request GET \
--url https://cloud.volttime.com/api/v2/teams/{team_id}/meters \
--header 'Authorization: Bearer <token>'
Request
The id of the team
Response
Array of meters
The identifier of the meter
The type of the meter
ct_meter
The date the meter was created
The date the meter was last updated
Array of meters
The identifier of the meter
The type of the meter
ct_meter
The date the meter was created
The date the meter was last updated
{
"data": [
{
"id": 1,
"type": "ct_meter",
"latest_data": {
"l1": 0,
"l2": 0,
"l3": 0,
"updated_at": "-"
},
"created_at": "2024-04-30T13:44:22.000000Z",
"updated_at": "2024-04-30T13:48:52.000000Z"
},
{
"id": 2,
"type": "ct_meter",
"latest_data": {
"l1": 4800,
"l2": 2200,
"l3": -19000,
"updated_at": "2024-04-30T14:14:10.096Z"
},
"created_at": "2024-04-30T13:53:52.000000Z",
"updated_at": "2024-04-30T13:53:52.000000Z"
}
],
// + Pagination
}
Was this page helpful?
curl --request GET \
--url https://cloud.volttime.com/api/v2/teams/{team_id}/meters \
--header 'Authorization: Bearer <token>'