POST api/SalesOrders/GetWareHoseStatusForPicking
Request Information
URI Parameters
None.
Body Parameters
WareHouseSoAndPickerData| Name | Description | Type | Additional information |
|---|---|---|---|
| QTH | integer |
None. |
|
| StockWH | decimal number |
None. |
|
| TotalPkdQty | integer |
None. |
|
| BackOrderQty | integer |
None. |
|
| CustomerId | globally unique identifier |
None. |
|
| SoId | globally unique identifier |
None. |
|
| ProductId | globally unique identifier |
None. |
|
| ManufactureNo | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"QTH": 1,
"StockWH": 2.0,
"TotalPkdQty": 3,
"BackOrderQty": 4,
"CustomerId": "5120ec44-5546-4e02-bda9-2eec1edf40b7",
"SoId": "ff63b2e9-8177-468b-81e3-4c9ddcb320ab",
"ProductId": "acf8a487-f444-444d-8bc0-d46aa2720c54",
"ManufactureNo": "sample string 8"
}
application/xml, text/xml
Sample:
<WareHouseSoAndPickerData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IosWebApi.Models"> <BackOrderQty>4</BackOrderQty> <CustomerId>5120ec44-5546-4e02-bda9-2eec1edf40b7</CustomerId> <ManufactureNo>sample string 8</ManufactureNo> <ProductId>acf8a487-f444-444d-8bc0-d46aa2720c54</ProductId> <QTH>1</QTH> <SoId>ff63b2e9-8177-468b-81e3-4c9ddcb320ab</SoId> <StockWH>2</StockWH> <TotalPkdQty>3</TotalPkdQty> </WareHouseSoAndPickerData>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
WareHouseSoAndPicker| Name | Description | Type | Additional information |
|---|---|---|---|
| QTH | integer |
None. |
|
| StockWH | decimal number |
None. |
|
| TotalPkdQty | integer |
None. |
|
| BackOrderQty | integer |
None. |
|
| CustomerId | globally unique identifier |
None. |
|
| SoId | globally unique identifier |
None. |
|
| ProductId | globally unique identifier |
None. |
|
| ManufactureNo | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"QTH": 1,
"StockWH": 2.0,
"TotalPkdQty": 3,
"BackOrderQty": 4,
"CustomerId": "12ed8971-f787-438a-85b1-519707304eb6",
"SoId": "642cc205-11ec-4ef6-9f26-0cd371478e0b",
"ProductId": "dcef4fb1-29a7-4171-bc90-7c7260d1df5b",
"ManufactureNo": "sample string 8"
}
application/xml, text/xml
Sample:
<WareHouseSoAndPicker xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IosWebApi.Models"> <BackOrderQty>4</BackOrderQty> <CustomerId>12ed8971-f787-438a-85b1-519707304eb6</CustomerId> <ManufactureNo>sample string 8</ManufactureNo> <ProductId>dcef4fb1-29a7-4171-bc90-7c7260d1df5b</ProductId> <QTH>1</QTH> <SoId>642cc205-11ec-4ef6-9f26-0cd371478e0b</SoId> <StockWH>2</StockWH> <TotalPkdQty>3</TotalPkdQty> </WareHouseSoAndPicker>