Skip to main content

Class SaleFromBankAccountResponse


Properties

NAMETYPELENGTHDESCRIPTION
ReferenceNumberstring20Reference number assigned to the transaction.
SuccessboolDid the transaction succeed?

Possible responses are: True or False
ErrorboolDid an error occur?

Possible responses are: True or False
ResponseCodeenum of Type AuthResponseCodePossible responses are:
  • Success
  • Duplicate_Transaction
  • Declined
  • Velocity_Count
  • Velocity_Amount
  • Customer_Opt_Out_Conversion
  • Account_Invalid_Routing
  • Account_Invalid
  • Error_Invalid_Format
  • Error_Internal
  • Error_Connection
  • Error_Not_Supported
  • Error_Not_Subscribed
  • Error_Invalid_Terminal
  • Account_Not_ACHable
  • Error_Invalid_Batch
  • 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 (Duplicate transactions)
  • ACH

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>
<SaleFromBankAccountResponse xmlns="https://ssl.selectpayment.com/PV">
<SaleFromBankAccountResult>
<ReferenceNumber>T:06N6Y1R7A2L</ReferenceNumber>
<Success>true</Success>
<Error>false</Error>
<ResponseCode>Success</ResponseCode>
<ActualDate>2010-12-30T00:00:00.0000000-06:00</ActualDate>
<ResponseMessage/>
<OriginatedAs>ACH</OriginatedAs>
</SaleFromBankAccountResult>
</SaleFromBankAccountResponse>
</soap:Body>
</soap:Envelope>