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": "1336b443-f3cf-4267-8956-3f2445960439",
"OrderId": "dba1a633-3102-43ed-a9af-c72d4cbb659e",
"UserId": "1eaa8e1e-0d7a-4b88-bcd2-983a0d3c3959",
"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"
}
]