Web Service Documentation / Categories / Meter Services / Get Associated Property Meters

Get Associated Property Meters

Updated on August 8, 2016

Description

This web service returns a list of meters that are associated to a specific property.

Version

22.0

HTTP Method

GET

Resource URL

/association/property/(propertyId)/meter

Header

Field Name Value Comments

Authorization Required

Yes

Parameters

Parameter Name Description
propertyId Id to the property

XML Schemas

Request/Response Schema Name
Request None
Response association.xsd

Example Request

The following example retrieves the list of meters that are associated to a property that has an id of 3523.

GET  /association/property/3523/meter

Example Response

The following example returns the list of meters that are associated to a property that has an id of 3523.

<?xml version="1.0" encoding="UTF-8"?>
<meterPropertyAssociationList>
    <energyMeterAssociation>
        <meters>
            <meterId>1</meterId>
            <meterId>2</meterId>
        </meters>
        <propertyRepresentation>
            <propertyRepresentationType>Whole Property</propertyRepresentationType>
        </propertyRepresentation>
    </energyMeterAssociation>
    
    <waterMeterAssociation>
        <meters>
            <meterId>10</meterId>
            <meterId>20</meterId>
        </meters>
        <propertyRepresentation>
            <propertyRepresentationType>Whole Property</propertyRepresentationType>
        </propertyRepresentation>
    </waterMeterAssociation>
    
    <wasteMeterAssociation>
        <meters>
            <meterId>100</meterId>
            <meterId>200</meterId>
        </meters>
    </wasteMeterAssociation>    
</meterPropertyAssociationList>
LIVE