Class GetCollectionReportBuilderRequest
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. Can be Null, 0 (Merchant Default), 1 or a list; can’t be blank | |
| returnedBeginDate | dateTime | The date from which to start reporting | ||
| returnedEndDate | dateTime | The last date for which transactions 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:GetCollectionReportBuilder>
<pv:storeId>0</pv:storeId>
<pv:storeKey isNull="false"/>
<pv:entityId>123456</pv:entityId>
<pv:locationIds>
<pv:int>0</pv:int>
</pv:locationIds>
<pv:Int32Array0>654321</pv:Int32Array0>
<pv:/locationIds>
<pv:returnedBeginDate>12/18/2025 2:05:35 PM</pv:returnedBeginDate>
<pv:returnedEndDate>12/18/2025 2:05:35 PM</pv:returnedEndDate>
</pv:GetCollectionReportBuilder>
</soapenv:Body>
</soapenv:Envelope>