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": "bb97c74e-b7ea-4547-8c10-03ff86d81132",
"OrderId": "6657faef-7b1c-4707-970d-ec9dbf0ae4a3",
"UserId": "1ce303d2-2c4e-4251-bf98-ee5aaea9f738",
"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"
}
]