Class InstantPaymentsCreditSendRequest
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) | |
| accountReferenceId | string | 50 | Y | Unique identifier of the account to be credited. |
| amount | decimal | Y | Dollar amount of the transaction. This element cannot be (0) zero or negative. | |
| isBusinessPayment | bool | Identifies whether the receiving party is a Business or Consumer. Valid values are:
| ||
| terminalNumber | string | 20 | Default is “__WebService”. (See - Optional Data Elements) | |
| transactionNumber | string | 50 | Unique identifier of a transaction. (See - System Required/User Optional Data Elements) | |
| description | string | 50 | This optional element can be used to define or explain the purpose of this transaction. | |
| field1 | string | 50 | Optional information associated with the transaction. Data is stored with the transaction. Indexed field. | |
| field2 | string | 50 | Optional information associated with the transaction. | |
| field3 | string | 50 | Optional information associated with the transaction. | |
| clientIp | string | 15 | IP address of person sending request. May be automatically retrieved. |
Examples
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<InstantPaymentsCreditSend xmlns="https://ssl.selectpayment.com/PV">
<storeId>123456</storeId>
<storeKey>3z9em9oxqwX3acsaqc6H0ck8D3Yj</storeKey>
<entityId>12345</entityId>
<locationId>102030</locationId>
<accountReferenceId>101</accountReferenceId>
<amount>101.01</amount>
<isBusinessPayment>False</isBusinessPayment>
<terminalNumber>__WebService</terminalNumber>
<TransactionNumber></TransactionNumber>
<Description></Description>
<Field1></Field1>
<Field2></Field2>
<Field3></Field3>
<CheckNumber></CheckNumber>
<clientIP></clientIP>
</InstantPaymentsCreditSend>
</soap:Body>
</soap:Envelope>