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": "0f8c1ed1-b149-4dea-a060-918175d41963",
"OrderId": "8143b2df-ac96-4bf3-a534-a4758c7d695f",
"UserId": "5de5cdab-f4c1-4f77-a684-2f47d0a51754",
"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"
}
]