GET api/PumpAndroid/GetVehicleCheck/{name}?VehicleNo={VehicleNo}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| VehicleNo | string |
Required |
|
| name | string |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of VehicleCheck| Name | Description | Type | Additional information |
|---|---|---|---|
| Billno | string |
None. |
|
| VehicleNo | string |
None. |
|
| Code | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Billno": "sample string 1",
"VehicleNo": "sample string 2",
"Code": "sample string 3"
},
{
"Billno": "sample string 1",
"VehicleNo": "sample string 2",
"Code": "sample string 3"
}
]
application/xml, text/xml
Sample:
<ArrayOfVehicleCheck xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebApp.Models">
<VehicleCheck>
<Billno>sample string 1</Billno>
<Code>sample string 3</Code>
<VehicleNo>sample string 2</VehicleNo>
</VehicleCheck>
<VehicleCheck>
<Billno>sample string 1</Billno>
<Code>sample string 3</Code>
<VehicleNo>sample string 2</VehicleNo>
</VehicleCheck>
</ArrayOfVehicleCheck>