Web Service Documentation / Categories / Meter Services / Get Meter Aggregation List

Get Meter Aggregation List

Updated on March 11, 2021

Description

This web service retrieves a list of all individual meters that are aggregated into the specified meter. The meter must already be shared with you.

Version

22.0

HTTP Method

GET

Resource URL

/meter/(meterId)/individual/list

Header

Field Name Value Comments
Authorization Basic credentials

Authorization Required

Yes

Parameters

Parameter Name Description
meterId Id to the meter

XML Schemas

Request/Response Schema Name
Request None
Response response.xsd

Example Request

The following example retrieves the list of all the individual meters that are aggregated to a meter that has an id of 200.

GET  /meter/200/individual/list

Example Response

The following example returns the list of all the individual meters that are aggregated to a meter that has an id of 200. The list contains web service links for you to call to retrieve information for each individual meter that is part of the aggregation. Each link contains a hint that refers to the individual meter's name.

<?xml version="1.0" encoding="UTF-8"?>
<response status="Ok">
     <links>
          <link httpMethod="GET" link="/meter/individual/41" linkDescription="This is the GET url for this individual meter." hint="Individual electric Main Meter"/>
          <link httpMethod="GET" link="/meter/individual/23" linkDescription="This is the GET url for this individual meter." hint="Individual electric Main Meter2"/>
     </links>
</response>
LIVE