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": "4ef24ab3-c910-4127-a47e-6158e86e74f2",
"OrderId": "699c3117-51b0-4e68-8624-3f0ed5ee7ae8",
"UserId": "f4ecc15e-c600-4366-97fa-7376c658015b",
"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"
}
]