Skip to main content

Class GetCollectionReportBuilderRequest


Properties

NAMETYPELENGTHREQUIREDDESCRIPTION
storeIdlongYUnique user ID generated by EPS. (See - Required Data Elements)
storeKeystringYUnique password generated by EPS. (See - Required Data Elements)
entityIdintYUnique identifier that is generated by EPS. (See - Required Data Elements)
locationIdsInt[]YUnique 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
returnedBeginDatedateTimeThe date from which to start reporting
returnedEndDatedateTimeThe 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/>
<soapenv:Body>
<pv:GetCollectionReportBuilder>
<pv:storeId>12345</pv:storeId>
<pv:storeKey> abCD123w87NxIB2V6x5/YEP+WXY9</pv:storeKey>
<pv:entityId>123456</pv:entityId>
<pv:locationIds>
<!--Zero or more repetitions:-->
<!--<pv:int>11111</pv:int>-->
<!--<pv:int>22222</pv:int>-->
<!--<pv:int>0</pv:int>-->
</pv:locationIds>
<pv:returnedBeginDate>2013-06-01</pv:returnedBeginDate>
<pv:returnedEndDate>2013-06-14</pv:returnedEndDate>
</pv:GetCollectionReportBuilder>
</soapenv:Body>
</soapenv:Envelope>