GET api/ReturnStock/{itemNumber}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| itemNumber | string |
Required |
Body Parameters
None.
Response Information
Resource Description
item| Name | Description | Type | Additional information |
|---|---|---|---|
| Error | string |
None. |
|
| ItemNumber | string |
None. |
|
| ItemDesc | string |
None. |
|
| Price | string |
None. |
|
| StockCode | string |
None. |
|
| SoldQty | integer |
None. |
|
| MinOrderQty | integer |
None. |
|
| QtyAvail | integer |
None. |
|
| NextAvailType | string |
None. |
|
| NextAvail | string |
None. |
|
| ShipWeight | decimal number |
None. |
|
| groupCode | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Error": "sample string 1",
"ItemNumber": "sample string 2",
"ItemDesc": "sample string 3",
"Price": "sample string 4",
"StockCode": "sample string 5",
"SoldQty": 6,
"MinOrderQty": 7,
"QtyAvail": 8,
"NextAvailType": "sample string 9",
"NextAvail": "sample string 10",
"ShipWeight": 11.1,
"groupCode": "sample string 12"
}
application/xml, text/xml
Sample:
<item xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Error>sample string 1</Error> <ItemNumber>sample string 2</ItemNumber> <ItemDesc>sample string 3</ItemDesc> <Price>sample string 4</Price> <StockCode>sample string 5</StockCode> <SoldQty>6</SoldQty> <MinOrderQty>7</MinOrderQty> <QtyAvail>8</QtyAvail> <NextAvailType>sample string 9</NextAvailType> <NextAvail>sample string 10</NextAvail> <ShipWeight>11.1</ShipWeight> <groupCode>sample string 12</groupCode> </item>