Description
This function is used to check, whether a given order is at a stage when billing and shipping addresses can still be changed. Function can accept either pixi* order number or the shop order number. In case both parameters are supplied and denote two different orders, the returned infomation might not be correct, which is why it is recommended to use only one of the parameters.
Request Parameters
# |
Name |
Type |
Required |
Example |
Description |
1 |
OrderNr |
integer |
0 |
123 |
[ optional] pixi* order number |
2 |
OrderNrExternal |
string |
0 |
Sample text |
[ optional] Shop 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:pixiCanChangeAddress>
<dem:OrderNr>123</dem:OrderNr>
<dem:OrderNrExternal>Sample text</dem:OrderNrExternal>
</dem:pixiCanChangeAddress>
</soapenv:Body>
</soapenv:Envelope>Response
Body 1:
# |
Name |
Type |
Description |
0 |
return |
integer |
1 if the address information still can be updated 0 if the address information can not be updated |
Additional Notes