Class GetItemsByBatchNumberRequest
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) | |
| BatchNumber | string | 40 | Yes | Unique identifier of the batch that is being requested. |
| ItemStatus | WSItemStatus | Valid values are:
This element can be repeated for multiple statuses requested. If null, all values will be used. (See Optional Data Elements) |
WSItemStatus
| NAME | TYPE | DESCRIPTION |
|---|---|---|
| Created | 0 | |
| Closed | 1 | |
| Approved | 2 | |
| Error | 3 | |
| Released | 4 | |
| Rejected | 5 | |
| Resolved | 6 | |
| Deleted | 7 | |
| SentToTransactionProcessing | 8 | |
| TPError | 9 | |
| NeedsRescan | 10 | |
| NeedsAttention | 11 | |
| Rescanned | 12 | |
| CheckDecisioningError | 13 | |
| None | 255 |
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:GetItemsByBatchNumber>
<ssl:storeId>0</ssl:storeId>
<ssl:storeKey isNull="true" />
<ssl:EntityId>12345</ssl:EntityId>
<ssl:BatchNumber>1101</ssl:BatchNumber>
<ssl:ItemStatus>
<ssl:WSItemStatus>SentToTransactionProcessing</ssl:WSItemStatus>
<ssl:WSItemStatus>TPError</ssl:WSItemStatus>
</ssl:ItemStatus>
</ssl:GetItemsByBatchNumber>
</soapenv:Body>
</soapenv:Envelope>