PaymentCardResponse: {
    amount_approved: string;
    authcode: string;
    code: string;
    message: string;
    status: string;
    token: string;
    transaction_date: string;
    transaction_id: string;
}

Response object for credit card sale and authorization

Type declaration

  • amount_approved: string

    Total amount processed by the host

  • authcode: string

    The host authorization code

  • code: string

    The payment gateway response code. See Payment Response Codes for code descriptions.

  • message: string

    Message associated with the response code.

  • status: string

    The status of the transaction. Possible response values are 'approved', 'declined' and 'error'.

  • token: string

    Payment card token. Returned only if the payment request card_detail.store_token value is set to true

  • transaction_date: string

    The date and time the host processed the transaction

  • transaction_id: string

    The payment gateway assigned transaction identifier

Generated using TypeDoc