Web Service Documentation / Categories / Meter Services / Update Individual Meter of an Aggregated Meter

Update Individual Meter of an Aggregated Meter

Updated on March 11, 2021

Description

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.

Version

22.0

HTTP Method

PUT

Resource URL

/meter/individual/(individualMeterId)

Header

Field Name Value Comments
Authorization Basic credentials
Content-Type application/xml

Authorization Required

Yes

Parameters

Parameter Name Description
individualMeterId Id to the individual meter that is part of an aggregation

XML Schemas

Request/Response Schema Name
Request individual.xsd
Response response.xsd

Example Request

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>

Example Response

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>
TEST