Skip to main content

Class GetItemEventsByDateRangeRequest


Properties

NAMETYPELENGTHREQUIREDDESCRIPTION
StoreIdlongYesUnique user ID generated by EPS. (See - Required Data Elements)
StoreKeystringYesUnique password generated by EPS. (See - Required Data Elements)
EntityIdintYesUnique identifier that is generated by EPS. (See - Required Data Elements)
LocationIdsintYesUnique identifier that is generated by EPS for each location. (See - Required Data Elements)

This element can be repeated for each location requested.
StartDateDateTimeYesThe date from which to start reporting batches.
EndDateDateTimeYesThe last date for which batches should be reported, not to exceed a date range of 90 days.
ItemEventTypeWSItemEventTypeValid values are:
  • Created
  • Error
  • Rejected
  • Resolved
  • Deleted
  • SentToTransactionProcessing
  • TPError
  • NeedsRescan
  • NeedsAttention
  • Rescan
  • CheckDecisioningError
  • CheckDecisionPerformed
  • CARReco
  • MICRReco
  • IQUA
  • MICRRepairFailed
  • RemoteKeyed
  • CARRecoFailed
  • MICRRecoFailed
  • Updated


This element can be repeated for multiple event types requested. If null, all values will be used. (See Optional Data Elements)

WSItemEventType

NAMETYPEDESCRIPTION
Created0
Error3
Rejected5
Resolved6
Deleted7
SentToTransactionProcessing8
TPError9
NeedsRescan10
NeedsAttention11
Rescan12
CheckDecisioningError13
CheckDecisionPerformed92
CARReco101
MICRReco102
IQUA103
MICRRepair104
MICRRepairFailed105
RemoteKeyed106
CARRecoFailed107
MICRRecoFailed108
Updated109

Examples

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:ssl="https://ssl.selectpayment.com/">
<soapenv:Header>
<ssl:SecurityHeader>
<ssl:BinarySecurityToken>your security token here</ssl:BinarySecurityToken>
</ssl:SecurityHeader>
</soapenv:Header>
<soapenv:Body>
<ssl:GetItemEventsByDateRange>
<ssl:storeId>0</ssl:storeId>
<ssl:storeKey isNull="true" />
<ssl:EntityId>12345</ssl:EntityId>
<ssl:LocationIds>
<ssl:int>102030</ssl:int>
</ssl:LocationIds>
<ssl:StartDate>2011-02-01</ssl:StartDate>
<ssl:EndDate>2011-03-04</ssl:EndDate>
<ssl:ItemEventType>
<ssl:WSItemEventType>RemoteKeyed</ssl:WSItemEventType>
<ssl:WSItemEventType>CheckDecisioningError</ssl:WSItemEventType>
<ssl:WSItemEventType>CARReco</ssl:WSItemEventType>
<ssl:WSItemEventType>IQUA</ssl:WSItemEventType>
</ssl:ItemEventType>
</ssl:GetItemEventsByDateRange>
</soapenv:Body>
</soapenv:Envelope>