Class GetSettlementStatusRequest
Properties
| NAME | TYPE | LENGTH | REQUIRED | DESCRIPTION |
|---|---|---|---|---|
| storeId | long | Yes | Unique user ID generated by EPS. | |
| storeKey | string | Yes | Unique password generated by EPS. | |
| OwnerEntityId | int | Yes | Unique identifier that is generated by EPS. | |
| WSActentryStatus | WSActentryStatus | Yes | Available fields that can be included in the report. Valid values are:
Note: The API will only contain ReturnedCancelled, SettlementCancelled, InProcess and all. When “all” status is selected, we would be returning only these three statuses. | |
| beginDate | DateTime | Yes | The date from which to start reporting batches. | |
| endDate | DateTime | Yes | The last date for which batches should be reported, not to exceed a date range of 90 days. |
WSActentryStatus
| NAME | TYPE | DESCRIPTION |
|---|---|---|
| All | 0 | |
| InProcess | 1 | |
| ReturnedCancelled | 7 | |
| SettlementCancelled | 8 |
Examples
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:pv="https://ssl.selectpayment.com/PV">
<soapenv:Header>
<pv:SecurityHeader>
<pv:BinarySecurityToken>?</pv:BinarySecurityToken>
</pv:SecurityHeader>
<soapenv:Body>
<pv:GetSettlementStatus>
<pv:storeId>0</pv:storeId>
<pv:storeKey isNull="true" />
<pv:ownerEntityId>123456</pv:ownerEntityId>
<pv:wsactentryStatus>All<pv:/wsactentryStatus>
<pv:beginDate>1/1/2026 12:00:00 AM<pv:/beginDate>
<pv:endDate>1/1/2026 3:06:00 PM</pv:endDate>
</pv:GetSettlementStatus>
</soapenv:Body>
</soapenv:Envelope>