Description
API cal to retrieve customer account balance.
Request Parameters
| # |
Name |
Type |
Required |
Example |
Description |
| 1 |
CustKey |
string |
1 |
abc |
Customer Id or Customer Number External |
| 2 |
DateTo |
string |
0 |
YYYY-MM-DD hh:mm:ss |
Show Balance of Customer Account on this date |
| 3 |
ShopId |
string |
0 |
abc |
Filter by specified shop. |
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:pixiGetCustomerAccountBalance>
<dem:CustKey>abc</dem:CustKey>
<dem:DateTo>YYYY-MM-DD hh:mm:ss</dem:DateTo>
<dem:ShopId>abc</dem:ShopId>
</dem:pixiGetCustomerAccountBalance>
</soapenv:Body>
</soapenv:Envelope>
Response
Body 1: Customer account balance details
| # |
Name |
Type |
Description |
| 1 |
CustomerId |
integer |
ID of the customer record |
| 2 |
CustomerNrExternal |
string |
Customer number external |
| 3 |
ShopId |
string |
Shop Id |
| 4 |
CAbalance |
number |
Customer Account Balance |
| 5 |
BaseCurrency |
string |
Base currency |
| 6 |
LastEventDate |
string |
Last customer account event date |
Additional Notes