Web Service Documentation / Categories / Meter Services / Update Individual Meter of an Aggregated Meter
Updated on March 11, 2021
This web service updates information for an individual meter that is included in the total for the aggregate meter. The aggregate meter must already be shared with you and you must have write access.
23.0
PUT
/meter/individual/(individualMeterId)
Field Name | Value | Comments |
---|---|---|
Authorization | Basic credentials | |
Content-Type | application/xml |
Yes
Parameter Name | Description |
---|---|
individualMeterId | Id to the individual meter that is part of an aggregation |
Request/Response | Schema Name |
---|---|
Request | individual.xsd |
Response | response.xsd |
The following example updates information for an individual meter with an id of 200 that is included in the total for the aggregate meter.
PUT /meter/individual/200<?xml version="1.0" encoding="UTF-8"?> <individualMeter> <customId>AE878XS</customId> <customIdName>Electric Meter</customIdName> <serviceAddress>111 Main St., Arlington, VA 22202</serviceAddress> <inUse>true</inUse> </individualMeter>
The following example indicates that the meter aggregation information was successfully updated.
<?xml version="1.0" encoding="UTF-8"?>
<response status="Ok">
<links>
<link httpMethod="GET" link="/meter/individual/200" linkDescription="This is the GET url for this individual meter." hint="Individual electric Main Meter"/>
</links>
</response>