GET api/npdcl/meterStatus/{consumerId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| consumerId | string |
Required |
Body Parameters
None.
Response Information
Resource Description
MeterStatusResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| statusCode | integer |
None. |
|
| message | string |
None. |
|
| data | MeterData |
None. |
Response Formats
application/json, text/json
Sample:
{
"statusCode": 1,
"message": "sample string 2",
"data": {
"type": "sample string 1",
"consumerID": "sample string 2",
"consumerName": "sample string 3",
"billMonth": "sample string 4",
"dueDate": "sample string 5",
"netPayableBeforeDueDate": "sample string 6",
"amountPayableUptoDueDatePlus10Days": "sample string 7",
"amountPayableAfterDueDatePlus10days": "sample string 8",
"previousPaymentAmountRs": "sample string 9",
"previousPaymentDate": "sample string 10",
"rechargableAmount": {},
"emailId": "sample string 12",
"mobileNo": "sample string 13",
"vender": {}
}
}
application/xml, text/xml
Sample:
<MeterStatusResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SB_Mobile_OrangePay.Models">
<data>
<amountPayableAfterDueDatePlus10days>sample string 8</amountPayableAfterDueDatePlus10days>
<amountPayableUptoDueDatePlus10Days>sample string 7</amountPayableUptoDueDatePlus10Days>
<billMonth>sample string 4</billMonth>
<consumerID>sample string 2</consumerID>
<consumerName>sample string 3</consumerName>
<dueDate>sample string 5</dueDate>
<emailId>sample string 12</emailId>
<mobileNo>sample string 13</mobileNo>
<netPayableBeforeDueDate>sample string 6</netPayableBeforeDueDate>
<previousPaymentAmountRs>sample string 9</previousPaymentAmountRs>
<previousPaymentDate>sample string 10</previousPaymentDate>
<rechargableAmount />
<type>sample string 1</type>
<vender />
</data>
<message>sample string 2</message>
<statusCode>1</statusCode>
</MeterStatusResponse>