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