Skip to main content
GET
/
v3
/
sites
/
{site}
/
groups
/
{siteGroup}
/
meter
Get Group Meter
curl --request GET \
  --url https://app.plugchoice.com/api/v3/sites/{site}/groups/{siteGroup}/meter \
  --header 'Authorization: Bearer <token>'
{
  "uuid": "<string>",
  "id": 123,
  "type": "<string>",
  "latest_data": {
    "l1": 123,
    "l2": 123,
    "l3": 123,
    "updated_at": "<string>"
  },
  "power": {
    "total": 123,
    "l1": 123,
    "l2": 123,
    "l3": 123
  },
  "created_at": "<string>",
  "updated_at": "<string>"
}
Returns the meter readings for the specified group. Returns a 404 error if no meter is attached to the group.
site
string
required
The UUID of the location.
siteGroup
integer
required
The ID of the group.

Response

uuid
string
The unique UUID of the meter.
id
integer
The numeric ID of the meter.
type
string
The meter type.
latest_data
object
The latest real-time meter readings.
power
object
Calculated power information for the meter.
created_at
string
ISO 8601 timestamp of when the meter was created.
updated_at
string
ISO 8601 timestamp of when the meter was last updated.