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