Returns all the meters that the specified team has access to
curl --request GET \
--url https://cloud.volttime.com/api/v2/teams/{team_id}/meters \
--header 'Authorization: Bearer <token>'
The id of the team
Array of meters
Show Meter
The identifier of the meter
The type of the meter
Show ConnectionStatus
ct_meter
The date the meter was created
The date the meter was last updated
Array of meters
Show Meter
The identifier of the meter
The type of the meter
Show ConnectionStatus
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>'