Web Service Documentation / Categories / Meter Services / Get Meter Aggregation List
Updated on March 11, 2021
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.
23.0
GET
/meter/(meterId)/individual/list
Field Name | Value | Comments |
---|---|---|
Authorization | Basic credentials |
Yes
Parameter Name | Description |
---|---|
meterId | Id to the meter |
Request/Response | Schema Name |
---|---|
Request | None |
Response | response.xsd |
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
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>