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
NameDescriptionTypeAdditional 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": "e5d6a31d-7a59-4559-a6bc-bc7cb20888e0",
  "OrderId": "261aabec-3e05-4afa-8521-b9f9bcf0e994",
  "UserId": "715331ea-3133-4c77-aef7-4353ac929953",
  "UserName": "sample string 4"
}

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'SupplierOrderOperationParameters'.

Response Information

Resource Description

List of events regarding the delivering of the order

Collection of StatusFeedback
NameDescriptionTypeAdditional 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"
  }
]