Description
Get all orders with a specific delivery date set (orderheader.ShipDate). DeliveryDate is the date, an order gets prepared andput onto the picklist. If no Parameter is passed, it returns all Orders with DeliveryDate in the future. Only available for AVA up.
Request Parameters
| # | Name | Type | Required | Example | Description |
| 1 | DaysToDeliveryDate | integer | 0 | 123 | |
| 2 | DeliveryDate | string | 0 | YYYY-MM-DD hh:mm:ss | |
| 3 | ShipVendor | string | 0 | Sample text | |
| 4 | ShopID | string | 0 | Sample text |
Request body
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:dem="https://api.pixi.eu/soap/demosandbox/"> <soapenv:Header/> <soapenv:Body> <dem:pixiGetOrdersByDeliveryDate> <dem:DaysToDeliveryDate>123</dem:DaysToDeliveryDate> <dem:DeliveryDate>YYYY-MM-DD hh:mm:ss</dem:DeliveryDate> <dem:ShipVendor>Sample text</dem:ShipVendor> <dem:ShopID>Sample text</dem:ShopID> </dem:pixiGetOrdersByDeliveryDate> </soapenv:Body> </soapenv:Envelope>