Web Service Documentation / Categories / Meter Services / Get Meter
Updated on February 10, 2014
This web service retrieves information for a specific meter. The meter must already be shared with you.
23.0
GET
/meter/(meterId)
Field Name | Value | Comments |
---|---|---|
Authorization | Basic credentials |
Yes
Parameter Name | Description |
---|---|
meterId | Id to the meter |
Request/Response | Schema Name |
---|---|
Request | None |
Response | meter.xsd |
The following example retrieves information for a meter that has an id of 543.
GET /meter/543
The following example returns the information for the meter.
<?xml version="1.0" encoding="UTF-8"?>
<meter>
<id>543</id>
<type>Electric</type>
<name>Electric Main Meter</name>
<unitOfMeasure>kBtu (thousand Btu)</unitOfMeasure>
<metered>true</metered>
<firstBillDate>2010-01-01</firstBillDate>
<inUse>true</inUse>
<accessLevel>Read</accessLevel>
<audit>
<createdBy>DUNAYT</createdBy>
<createdByAccountId>-14</createdByAccountId>
<createdDate>2012-08-16T17:04:57-04:00</createdDate>
<lastUpdatedBy>DUNAYT</lastUpdatedBy>
<lastUpdatedByAccountId>-14</lastUpdatedByAccountId>
<lastUpdatedDate>2012-08-16T17:09:35-04:00</lastUpdatedDate>
</audit>
</meter>