Response Property
Contains the response to an authorization.
Syntax
[VB.NET] Public ReadOnlyProperty Response As PTechChargeResponse
[C#] public PTechChargeResponse Response {get;}
Remarks
This property will contain the response returned from the Paymentech server. It should be inspected (and logged) after a call to Sale, AuthOnly, Capture, Credit, or VoidTransaction. The PTechChargeResponse type contains the following fields:
ApprovalCode | Contains an authorization code for an approved transaction. |
AuthorizedAmount | Used for partial authorizations. Indicates the actual amount authorized from the stored value card. |
AuthSource | Indicates the source of the authorization code stored in ApprovalCode. |
AVSResult | Contains the Address Verification System result code. Used for fraud detection. |
BatchNumber | Number that identifies the batch that this transaction will be settled in (only applicable to Host Capture. Will be all zeros for Terminal Capture settlements). |
CardLevel | Contains a two-character code created by Visa during the authorization process. |
CardType | Type of credit card that was authorized (computed by Paymentech and returned in this field). |
Code | Indicates the success or failure of the transaction. |
CVVResult | Contains the returned CVV result code if it was requested. Used for fraud detection. |
DebitSurcharge | Additional fee (if any) charged for debit transactions. |
DebitTrace | Debit-specific host tracking number for this transaction. |
NetworkId | Authorizing network Id. |
RetrievalNumber | Reference number returned from the Paymentech host. |
SequenceNumber | SequenceNumber echoed from the authorization. |
Text | Contains a human-readable message explaining the code. |
This property is read-only.