Skip to main content
GET
/
organizations
/
{orgId}
/
dataexplorer
/
meters
Retrieve Meters stored in the Data Warehouse over a period of time.
curl --request GET \
  --url https://api.m3ter.com/organizations/{orgId}/dataexplorer/meters \
  --header 'Authorization: Bearer <token>'
{
  "values": [
    {
      "meterCode": "<string>",
      "meterName": "<string>",
      "measures": [
        {
          "measureName": "<string>",
          "measureUnit": "<string>"
        }
      ],
      "dimensions": [
        {
          "name": "<string>",
          "filter": [
            "<string>"
          ],
          "meterId": "<string>",
          "attributes": [
            "<string>"
          ]
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

m3ter supports machine to machine authentication using the clientCredentials OAuth2 flow.

The authorizationCode flow controls access for human users via the m3ter Console application.

Path Parameters

orgId
string
required

UUID of the organization

Query Parameters

startDate
string

Start date

endDate
string

End date

limit
integer<int32> | null

Response

Returns a list of Meters from the Data Warehouse.

Response containing Meters and their dimension names and measure names.

values
object[]

List of Meters.