Class RefundCardTransactionRequest
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) | |
| locationId | int | Y | Unique identifier generated by EPS for each location.(See - Required Data Elements) | |
| originaReferenceNumber | string | 20 | Y | Reference number assigned to the original transaction that is being reversed. |
| refundAmount | decimal | Dollar amount to refund. This element cannot be (0) zero, negative, or greater than the original transaction amount. |
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:RefundCardTransaction>
<pv:storeId>0</pv:storeId>
<pv:storeKey isNull="false"/>
<pv:entityId>12345</pv:entityId>
<pv:locationId>102030</pv:locationId>
<pv:originalReferenceNumber> T:123456789</pv:originalReferenceNumber>
<pv:refundAmount>10.00</pv:locationId>
</pv:RefundTransaction>
</soapenv:Body>
</soapenv:Envelope>