Class GetItemEventsByDateRangeRequest
Properties
| NAME | TYPE | LENGTH | REQUIRED | DESCRIPTION |
|---|---|---|---|---|
| StoreId | long | Yes | Unique user ID generated by EPS. (See - Required Data Elements) | |
| StoreKey | string | Yes | Unique password generated by EPS. (See - Required Data Elements) | |
| EntityId | int | Yes | Unique identifier that is generated by EPS. (See - Required Data Elements) | |
| LocationIds | int | Yes | Unique identifier that is generated by EPS for each location. (See - Required Data Elements) This element can be repeated for each location requested. | |
| StartDate | 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. | |
| ItemEventType | WSItemEventType | Valid values are:
This element can be repeated for multiple event types requested. If null, all values will be used. (See Optional Data Elements) |
WSItemEventType
| NAME | TYPE | DESCRIPTION |
|---|---|---|
| Created | 0 | |
| Error | 3 | |
| Rejected | 5 | |
| Resolved | 6 | |
| Deleted | 7 | |
| SentToTransactionProcessing | 8 | |
| TPError | 9 | |
| NeedsRescan | 10 | |
| NeedsAttention | 11 | |
| Rescan | 12 | |
| CheckDecisioningError | 13 | |
| CheckDecisionPerformed | 92 | |
| CARReco | 101 | |
| MICRReco | 102 | |
| IQUA | 103 | |
| MICRRepair | 104 | |
| MICRRepairFailed | 105 | |
| RemoteKeyed | 106 | |
| CARRecoFailed | 107 | |
| MICRRecoFailed | 108 | |
| Updated | 109 |
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>