Class AuthorizeTransactionWithAddendaResponse
Properties
| NAME | TYPE | LENGTH | DESCRIPTION |
|---|---|---|---|
| ReferenceNumber | string | 20 | The reference number assigned to the transaction. |
| Success | bool | Did the transaction succeed? Possible responses are: true or false | |
| Error | bool | Did an error occur? Possible responses are: true or false | |
| ResponseCode | enum of Type AuthResponseCode | Possible responses are:
| |
| ActualDate | DateTime | The date and time the transaction was created. | |
| ResponseMessage | string | This field will provide supplemental information based on each response code listed above. | |
| OriginatedAs | enum of Type SettlementType | Transaction type. Possible responses are:
|
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>