POST api/SupplierOrder/Dispatch
Marks lines and items as picked. Updates the order with new trace status Dispatched. Generates consignment tracking number for the order.
Request Information
URI Parameters
None.
Body Parameters
SupplierOrderOperationParameters| Name | Description | Type | Additional information |
|---|---|---|---|
| ClientId | globally unique identifier |
None. |
|
| OrderId | globally unique identifier |
None. |
|
| UserId | globally unique identifier |
None. |
|
| UserName | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ClientId": "a7f84efe-6855-44b2-9461-fd111dcee2dc",
"OrderId": "029a053e-f85e-4094-b679-2881875b84d7",
"UserId": "128986aa-5e12-431d-bc0a-72c654d6ec13",
"UserName": "sample string 4"
}
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
List of events regarding the dispatching of the order
Collection of StatusFeedback| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Success": true,
"Message": "sample string 2"
},
{
"Success": true,
"Message": "sample string 2"
}
]