Class GetTransactionByTransactionNumber2Request
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) | |
| transactionNumber | string | 50 | Y | Unique identifier of the transaction being requested. |
| includeImages | bool | Y | Images will be included with the transaction information. Valid values are:
|
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:GetTransactionByTransactionNumber2>
<pv:storeId>0</pv:storeId>
<pv:storeKey isNull="false"/>
<pv:entityId>123456</entityId>
<pv:transactionNumber>TransactionNumber</pv:transactionNumber>
<pv:includeImages>1</pv:includeImages>
</pv:GetTransactionByTransactionNumber2>
</soapenv:Body>
</soapenv:Envelope>