Skip to main content

Class AuthorizeTransactionWithCustomerResponse


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
  • AVS_Declined
  • CCVS_Declined
  • Expired
  • Authorizer_Suppressed_Date
  • Error_Invalid_Format
  • Error_Timeout
  • Error_Internal
  • Error_Connection
  • Error_Not_Supported
  • Error_Not_Subscribed
  • Error_Batch_Closed
  • Error_Invalid_Batch
  • Error_Invalid_Terminal
  • Error_Transaction_Not_Found
  • Error_Terminal_Disabled
  • Error_Invalid_State
  • Error_Unspecified
  • Account_Invalid
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
  • Paper_Draft
  • Image_Replacement_Document
  • Wire_Transfer
  • Card_Transfer
  • Image_Exhange
  • Third_Party
  • None

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>
<AuthorizeTransactionWithCustomerResponse xmlns="https://ssl.selectpayment.com/PV">
<AuthorizeTransactionWithCustomerResult>
<ReferenceNumber>T:SFY9ALP74</ReferenceNumber>
<Success>true</Success>
<Error>false</Error>
<ResponseCode>Success</ResponseCode>
<ActualDate>2011-02-17T00:00:00.0000000-06:00</ActualDate>
<ResponseMessage/>
<OriginatedAs>ACH</OriginatedAs>
</AuthorizeTransactionWithCustomerResult>
</AuthorizeTransactionWithCustomerResponse>
</soap:Body>
</soap:Envelope>