Description
Set customer information, if 0 for not required parameters will be set, the option will be disabled. Customer is defined with customer Id or shop Id and customer number external/customer email.
Request Parameters
| # |
Name |
Type |
Required |
Example |
Description |
| 1 |
CustKey |
integer |
1 |
abcdefg |
Filter: Customer Id |
| 2 |
CustomerNrExternal |
string |
1 |
abcdefg |
Filter: Customer number external |
| 3 |
CustomerEmail |
string |
1 |
abcdefg |
Filter: Customer email |
| 4 |
ShopId |
string |
1 |
abcdefg |
Filter: Shop Id |
| 5 |
InvoiceDueDays |
string |
0 |
123 |
Customer invoice due days |
| 6 |
ReminderAction |
string |
0 |
NONE, PRINT, MAIL, PRINT&MAIL, 0 |
Reminder action |
| 7 |
DaysForFirstReminder |
string |
0 |
123 |
Number of days till first reminder |
| 8 |
DaysForNextReminder |
string |
0 |
123 |
Number of days till next reminder |
| 9 |
ReminderDueDays |
string |
0 |
123 |
Reminder due days |
| 10 |
ReminderCost |
number |
0 |
9.99 |
Reminder costs |
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:pixiCustomerInfoSet>
<dem:CustKey>abcdefg</dem:CustKey>
<dem:CustomerNrExternal>abcdefg</dem:CustomerNrExternal>
<dem:CustomerEmail>abcdefg</dem:CustomerEmail>
<dem:ShopId>abcdefg</dem:ShopId>
<dem:InvoiceDueDays>123</dem:InvoiceDueDays>
<dem:ReminderAction>NONE, PRINT, MAIL, PRINT&MAIL, 0</dem:ReminderAction>
<dem:DaysForFirstReminder>123</dem:DaysForFirstReminder>
<dem:DaysForNextReminder>123</dem:DaysForNextReminder>
<dem:ReminderDueDays>123</dem:ReminderDueDays>
<dem:ReminderCost>9.99</dem:ReminderCost>
</dem:pixiCustomerInfoSet>
</soapenv:Body>
</soapenv:Envelope>
Response
Body 1: Status
| # |
Name |
Type |
Description |
| 1 |
Status |
string |
Status (OK/ERROR) |
| 2 |
StatusMessage |
string |
Status description |
Additional Notes