Skip to main content

Class GetTransactionRequest


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)
transactionReferenceNumberstring20YReference number assigned to the transaction being retrieved.
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:GetTransaction>
<pv:storeId>0</pv:storeId>
<pv:storeKey isNull="true" />
<pv:entityId>12345</pv:entityId>
<pv:transactionReferenceNumber>your transaction number here</pv:transactionReferenceNumber>
</pv:GetTransaction>
</soapenv:Body>
</soapenv:Envelope>