Description
Get all changed customers since / to
Request Parameters
| # |
Name |
Type |
Required |
Example |
Description |
| 1 |
Since |
string |
1 |
YYYY-MM-DD hh:mm:ss |
Changes since... |
| 2 |
To |
string |
0 |
YYYY-MM-DD hh:mm:ss |
... to DateTime |
| 3 |
Rowcount |
integer |
0 |
123 |
Return only number of records |
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:pixiGetChangedCustomers>
<dem:Since>YYYY-MM-DD hh:mm:ss</dem:Since>
<dem:To>YYYY-MM-DD hh:mm:ss</dem:To>
<dem:Rowcount>123</dem:Rowcount>
</dem:pixiGetChangedCustomers>
</soapenv:Body>
</soapenv:Envelope>
Response
Body 1: Result set
| # |
Name |
Type |
Description |
| 0 |
CustKey |
integer |
Reference to the customer record |
| 1 |
AddrKey |
integer |
Reference to the billing address of the customer. To be used with the pixiGetAddress function. |
| 2 |
ShipAddrKey |
integer |
Reference to the shipping address of the customer. To be used with the pixiGetAddress function. |
| 3 |
ShipLock |
boolean |
ShipLock |
| 4 |
CustomerOf |
string |
CustomerOf |
| 5 |
eMail |
string |
eMail |
| 6 |
Name |
string |
Name |
| 7 |
UpdateDate |
string |
UpdateDate |
Additional Notes