During the current lapse in appropriations, EPA intends to keep the ENERGY STAR website, tools, and resources available, however they will not be updated regularly. Many services may not be available during this time.
Web Service Documentation / Categories / Meter Services / Get Associated Property Meters
Updated on August 8, 2016
This web service returns a list of meters that are associated to a specific property.
25.0
GET
/association/property/(propertyId)/meter
Field Name | Value | Comments |
---|
Yes
Parameter Name | Description |
---|---|
propertyId | Id to the property |
Request/Response | Schema Name |
---|---|
Request | None |
Response | association.xsd |
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
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>