Description
API Call returns Delivery Status for an order
Request Parameters
| # |
Name |
Type |
Required |
Example |
Description |
| 1 |
OrderNr |
integer |
1 |
123456 |
Order number |
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:pixiGetPartialDeliveryStatus>
<dem:OrderNr>123456</dem:OrderNr>
</dem:pixiGetPartialDeliveryStatus>
</soapenv:Body>
</soapenv:Envelope>
Response
Body 1: Result set
| # |
Name |
Type |
Description |
| 0 |
OrderNr |
integer |
OrderNr value returned |
| 1 |
PartialDeliveryActive |
boolean |
A bit flag which is 1 (True) when the order is scheduled for partital delivery and 0 (False) when it isnt |
| 2 |
CancelUnavailableItems |
boolean |
A bit flag which is 1 (True), if the order is scheduled for partital delivery, all remaining items would be cancelled after the partial shipment is complete |
| 3 |
PartialDeliveryForRemaining |
boolean |
A bit flag which is 1 (True), if the order is scheduled for partital delivery and the remaining items are not being cancelled, they (the remaining items) would be also shipped upon their arrival in the stock |
Additional Notes