Skip to main content

Class AuthorizeTransactionWithAddendaResponse


Properties

NAMETYPELENGTHDESCRIPTION
ReferenceNumberstring20The reference 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
  • Data_Not_Valid
  • Velocity_Count
  • Velocity_Amount
  • Error_Invalid_Format
  • Error_Timeout
  • Error_Internal
  • Error_Connection
  • Error_Not_Supported
  • Error_Not_Subscribed
  • Error_Invalid_Terminal
  • Error_Transaction_Not_Found
  • Error_Terminal_Disabled
  • Error_Invalid_State
  • Error_Unspecified
ActualDateDateTimeThe date and time the transaction was created.
ResponseMessagestringThis field will provide supplemental information based on each response code listed above.
OriginatedAsenum of Type SettlementTypeTransaction type.

Possible responses are:
  • 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>
<AuthorizeTransactionWithAddendaResponse xmlns="https://ssl.selectpayment.com/PV">
<AuthorizeTransactionWithAddendaResult>
<ReferenceNumber>T:9T10V7BBA1</ReferenceNumber>
<Success>true</Success>
<Error>false</Error>
<ResponseCode>Success</ResponseCode>
<ActualDate>2013-09-13T00:00:00-05:00</ActualDate>
<ResponseMessage/>
<OriginatedAs>ACH</OriginatedAs>
</AuthorizeTransactionWithAddendaResult>
</AuthorizeTransactionWithAddendaResponse>
</soap:Body>
</soap:Envelope>