GET api/PumpAndroid/GetBillDetails/{code}?BillNo={BillNo}&mo={mo}&da={da}&ye={ye}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| BillNo | string |
Required |
|
| Name | string |
Required |
|
| mo | integer |
Required |
|
| da | integer |
Required |
|
| ye | integer |
Required |
|
| code | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of BillSelection| Name | Description | Type | Additional information |
|---|---|---|---|
| BillNo | string |
None. |
|
| BillDate | date |
None. |
|
| SupplierID | integer |
None. |
|
| Name | string |
None. |
|
| VehicleNo | string |
None. |
|
| DEntryNo | integer |
None. |
|
| MeterRead | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"BillNo": "sample string 1",
"BillDate": "2026-01-25T02:06:41.3393534+05:30",
"SupplierID": 3,
"Name": "sample string 4",
"VehicleNo": "sample string 5",
"DEntryNo": 6,
"MeterRead": "sample string 7"
},
{
"BillNo": "sample string 1",
"BillDate": "2026-01-25T02:06:41.3393534+05:30",
"SupplierID": 3,
"Name": "sample string 4",
"VehicleNo": "sample string 5",
"DEntryNo": 6,
"MeterRead": "sample string 7"
}
]
application/xml, text/xml
Sample:
<ArrayOfBillSelection xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApp.Models">
<BillSelection>
<BillDate>2026-01-25T02:06:41.3393534+05:30</BillDate>
<BillNo>sample string 1</BillNo>
<DEntryNo>6</DEntryNo>
<MeterRead>sample string 7</MeterRead>
<Name>sample string 4</Name>
<SupplierID>3</SupplierID>
<VehicleNo>sample string 5</VehicleNo>
</BillSelection>
<BillSelection>
<BillDate>2026-01-25T02:06:41.3393534+05:30</BillDate>
<BillNo>sample string 1</BillNo>
<DEntryNo>6</DEntryNo>
<MeterRead>sample string 7</MeterRead>
<Name>sample string 4</Name>
<SupplierID>3</SupplierID>
<VehicleNo>sample string 5</VehicleNo>
</BillSelection>
</ArrayOfBillSelection>