POST api/Order/SetOrderPicking/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
OrderPickingRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Picker_ID | integer |
None. |
|
| Status_ID | integer |
None. |
|
| NumCases | integer |
None. |
|
| Service | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Picker_ID": 1,
"Status_ID": 2,
"NumCases": 3,
"Service": "sample string 4"
}
application/xml, text/xml
Sample:
<OrderPickingRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RealCoffee.Web.APIBase.Models"> <NumCases>3</NumCases> <Picker_ID>1</Picker_ID> <Service>sample string 4</Service> <Status_ID>2</Status_ID> </OrderPickingRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
OrderPickingResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| ConsignmentNumber | string |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"ConsignmentNumber": "sample string 2",
"Message": "sample string 3"
}
application/xml, text/xml
Sample:
<OrderPickingResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RealCoffee.Web.APIBase.Models"> <ConsignmentNumber>sample string 2</ConsignmentNumber> <Message>sample string 3</Message> <Success>true</Success> </OrderPickingResult>