Web Service Documentation / Categories / Meter Services / Get Meter

Get Meter

Updated on February 10, 2014

Description

This web service retrieves information for a specific meter. The meter must already be shared with you.

Version

22.0

HTTP Method

GET

Resource URL

/meter/(meterId)

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 meter.xsd

Example Request

The following example retrieves information for a meter that has an id of 543.

GET  /meter/543

Example Response

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