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