POST api/SupplierOrder/Deliver
Marks lines and items as delivered Updates the order with new trace status Delivered. Updates the purchase order with the delivered quantity and update its status. Creates a reception for the linked purchase order. Adds the received quantity and items to the linked sales order by allocating and picking. Generates consignment for the sales order based on the supplier/purchase order consignment by using the same consignment/tracking number Generates EDI delivery note if customer of the sales order is configured for EDI.
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": "bff9d0a5-42c7-4f75-8e11-b9e328969476",
"OrderId": "1dd91ce7-bea6-4995-9e25-413cf0a17ba6",
"UserId": "3eafc7bc-e63d-4700-96af-85eff3ba75d9",
"UserName": "sample string 4"
}
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
List of events regarding the delivering 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"
}
]