Description
API call set the shipping information for order
Request Parameters
| # |
Name |
Type |
Required |
Example |
Description |
| 1 |
OrderNr |
integer |
0 |
123 |
pixi order number |
| 2 |
OrderNrExternal |
string |
0 |
abcdefg |
External (shop) order number |
| 3 |
ShipVendor |
string |
0 |
DHL |
Shipping vendor code |
| 4 |
DHLProdukt |
string |
0 |
72 |
Transport remark (product) |
| 5 |
DHLVerfahren |
string |
0 |
7202 |
Transport remark (procedure) |
| 6 |
DHLExtra |
string |
0 |
7210 |
Transport remark (extras) |
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:pixiSetOrderShippingInformation>
<dem:OrderNr>123</dem:OrderNr>
<dem:OrderNrExternal>abcdefg</dem:OrderNrExternal>
<dem:ShipVendor>DHL</dem:ShipVendor>
<dem:DHLProdukt>72</dem:DHLProdukt>
<dem:DHLVerfahren>7202</dem:DHLVerfahren>
<dem:DHLExtra>7210</dem:DHLExtra>
</dem:pixiSetOrderShippingInformation>
</soapenv:Body>
</soapenv:Envelope>
Response
Body 1: Status and result
| # |
Name |
Type |
Description |
| 1 |
Status |
integer |
Execution status |
| 2 |
Message |
string |
Status description |
| 3 |
OrderNr |
integer |
pixi order number |
| 4 |
OrderNrExternal |
string |
External (shop) order number |
| 5 |
ShipVendor |
string |
Shipping vendor code |
| 6 |
DHLProdukt |
string |
Transport remark (product) |
| 7 |
DHLVerfahren |
string |
Transport remark (procedure) |
| 8 |
DHLExtra |
string |
Transport remark (extras) |
Additional Notes