Web Service Documentation / Categories / Meter Services / Get Meter Identifier Value List

Get Meter Identifier Value List

Updated on December 10, 2018

Description

This web service retrieves a list of meter identifier values for a specific meter specified in the URL.

Version

22.0

HTTP Method

GET

Resource URL

/meter/(meterId)/identifier/list

Header

Field Name Value Comments
Authorization Basic credentials

Authorization Required

Yes

Parameters

Parameter Name Description
meterId Id of the meter

XML Schemas

Request/Response Schema Name
Request None
Response additionalIdentifier.xsd

Example Request

The following example retrieves the list of values and their meter identifiers for the meter that has an id of 32423.

GET  /meter/32423/identifier/list

Example Response

The following example displays the list of values and their meter identifiers for the meter that has an id of 32423.

<?xml version="1.0" encoding="UTF-8"?>
<additionalIdentifiers>
     <additionalIdentifier id="925276">
          <additionalIdentifierType id="1" standardApproved="false" name="Custom ID 1" description="Custom ID 1"/>
          <description>UTILITY CUSTOM INFO</description>
          <value>ACCT SUBMETER 12a - MECHANICAL</value>
     </additionalIdentifier>
     <additionalIdentifier id="925277">
          <additionalIdentifierType id="2" standardApproved="false" name="Custom ID 2" description="Custom ID 2"/>
          <description>ENERGY SERVICES PROVIDER #1 CUSTOM INFO</description>
          <value>CUSTOMER#34Meter#5678</value>
     </additionalIdentifier>
     <additionalIdentifier id="925278">
          <additionalIdentifierType id="3" standardApproved="false" name="Custom ID 3" description="Custom ID 3"/>
          <description>ENERGY SERVICES PROVIDER #1 CUSTOM INFO</description>
          <value>CUSTOMER#87Meter#6543</value>
     </additionalIdentifier>
</additionalIdentifiers>
TEST