Skip to main content

Class CreditToBankAccountResponse


Properties

NAMETYPELENGTHDESCRIPTION
ReferenceNumberstring20Reference number assigned to the transaction.
SuccessboolPossible responses are:
  • true – the transaction was approved.
  • false – there was a problem with the transaction.
ErrorboolPossible responses are:
  • true – there was a problem with the transaction.
  • false – the transaction was approved.
ResponseCodeenum of Type AuthResponseCodePossible responses are:
  • Success
  • Duplicate_Transaction
  • Declined
  • Velocity_Count
  • Velocity_Amount
  • Customer_Opt_Out_Conversion
  • Account_Invalid_Routing
  • Error_Invalid_Format
  • Error_Internal
  • Error_Connection
  • Error_Not_Supported
  • Error_Not_Subscribed (ex. No processor settings)
  • Error_Invalid_Batch
  • Error_Invalid_Terminal
  • Account_Not_ACHable
  • Error_Terminal_Disabled
  • Error_Invalid_State
  • Error_Unspecified
ActualDateDateTime
ResponseMessagestringThis field will provide supplemental information based on each response code listed above.
OriginatedAsenum of Type SettlementTypePossible responses are:
  • None
  • ACH
  • Paper_Draft
  • Image_Replacement_Document
  • Wire_Transfer
  • Image_Exchange

Examples

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<CreditToBankAccountResponse xmlns="https://ssl.selectpayment.com/PV">
<CreditToBankAccountResult>
<ReferenceNumber>T:91XBZ7R7D1S</ReferenceNumber>
<Success>true</Success>
<Error>false</Error>
<ResponseCode>Success</ResponseCode>
<ActualDate>2010-12-30T00:00:00.0000000-06:00</ActualDate>
<ResponseMessage/>
<OriginatedAs>ACH</OriginatedAs>
</CreditToBankAccountResult>
</CreditToBankAccountResponse>
</soap:Body>
</soap:Envelope>