Skip to main content

Class InstantPaymentsCreditSendRequest


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)
locationIdintYUnique identifier generated by EPS for each location. (See - Required Data Elements)
accountReferenceIdstring50YUnique identifier of the account to be credited.
amountdecimalYDollar amount of the transaction. This element cannot be (0) zero or negative.
isBusinessPaymentboolIdentifies whether the receiving party is a Business or Consumer.

Valid values are:
  • False = Consumer (Default)
  • True = Business
terminalNumberstring20Default is “__WebService”. (See - Optional Data Elements)
transactionNumberstring50Unique identifier of a transaction. (See - System Required/User Optional Data Elements)
descriptionstring50This optional element can be used to define or explain the purpose of this transaction.
field1string50Optional information associated with the transaction. Data is stored with the transaction. Indexed field.
field2string50Optional information associated with the transaction.
field3string50Optional information associated with the transaction.
clientIpstring15IP 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>