Skip to main content

Class GetTransactionByTransactionNumber2Request


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)
transactionNumberstring50YUnique identifier of the transaction being requested.
includeImagesboolYImages will be included with the transaction information.

Valid values are:
  • 0 = False;
  • 1 = True

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>