Class GetCreditAndDebitReportsWithTraceNumberRequest
Properties
| NAME | TYPE | LENGTH | REQUIRED | DESCRIPTION |
|---|---|---|---|---|
| storeId | long | Y | Unique user ID generated by EPS. (See - Required Data Elements) | |
| storeKey | string | Y | Unique password generated by EPS. (See - Required Data Elements) | |
| entityId | int | Y | Unique identifier that is generated by EPS. (See - Required Data Elements) | |
| locationIds | int | Y | Unique identifier generated by EPS for each location. (See - Required Data Elements) This element will be repeated for each location requested. | |
| beginDate | DateTime | Y | The date from which to start reporting batches. | |
| endDate | DateTime | Y | The last date for which batches should be reported, not to exceed a date range of 90 days. |
Examples
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:pv="https://ssl.selectpayment.com/PV">
<soapenv:Header>
<pv:SecurityHeader>
<pv:BinarySecurityToken>your security token here</pv:BinarySecurityToken>
</pv:SecurityHeader>
</soapenv:Header>
<soapenv:Body>
<pv:GetCreditAndDebitReportsWithTraceNumber>
<pv:storeId>0</pv:storeId>
<pv:storeKey isNull="true" />
<pv:entityId>123456</pv:entityId>
<pv:locationIds>
<pv:int>0</pv:int>
</pv:locationIds>
<pv:beginDate>2026-02-12</pv:beginDate>
<pv:endDate>2026-02-28</pv:endDate>
</pv:GetCreditAndDebitReportsWithTraceNumber>
</soapenv:Body>
</soapenv:Envelope>