GET api/Meter/NonAMR/MonthVol/{MeterID}/{Month}/{Year}

Returns Monthly volumes on a Manual Meter for specific month/year.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
MeterID

The Meter ID you are searching for

string

Required

Month

The Numeric Month you are searching for between 01-12

string

Required

Year

The year you are searching for in YYYY format.

string

Required

Body Parameters

None.

Response Information

Resource Description

MeterMonthVolume
NameDescriptionTypeAdditional information
MeterDate

string

None.

MeterID

string

None.

MonthlyVolume

string

None.

FlowCalc

string

None.

Response Formats

application/json, text/json

Sample:
{
  "MeterDate": "sample string 1",
  "MeterID": "sample string 2",
  "MonthlyVolume": "sample string 3",
  "FlowCalc": "sample string 4"
}

application/xml, text/xml

Sample:
<MeterMonthVolume xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WINSWebAPI.Models">
  <FlowCalc>sample string 4</FlowCalc>
  <MeterDate>sample string 1</MeterDate>
  <MeterID>sample string 2</MeterID>
  <MonthlyVolume>sample string 3</MonthlyVolume>
</MeterMonthVolume>