Description
API call updates a customer and its corresponding address. All empty or skipped optional parameters will be ignored by the update statement.
Request Parameters
# |
Name |
Type |
Required |
Example |
Description |
1 |
CustKey |
integer |
1 |
123 |
Customer ID that will be updated. |
2 |
Street |
string |
0 |
abcdefg |
Street address. |
3 |
HouseNr |
string |
0 |
abcdefg |
House number. |
4 |
City |
string |
0 |
abcdefg |
City name. |
5 |
Zip |
string |
0 |
abcdefg |
Postal code of the city. |
6 |
string |
0 |
abcdefg |
e-Mail address. |
|
7 |
FirstName |
string |
0 |
abcdefg |
Customers first name. |
8 |
LastName |
string |
0 |
abcdefg |
Customers last name. |
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:pixiUpdateCustomer>
<dem:CustKey>123</dem:CustKey>
<dem:Street>abcdefg</dem:Street>
<dem:HouseNr>abcdefg</dem:HouseNr>
<dem:City>abcdefg</dem:City>
<dem:Zip>abcdefg</dem:Zip>
<dem:eMail>abcdefg</dem:eMail>
<dem:FirstName>abcdefg</dem:FirstName>
<dem:LastName>abcdefg</dem:LastName>
</dem:pixiUpdateCustomer>
</soapenv:Body>
</soapenv:Envelope>Response
Body 1: Return status
# |
Name |
Type |
Description |
1 |
StatusCode |
string |
Status code |
2 |
ErrorMsg |
string |
Status description (error/success) message |
Additional Notes