Typescript SDK Type Docs
    Preparing search index...

    Interface PaymentIntentCaptureAction

    Requests to capture the given amount from the customer. Checkout will request the PSP or gift card management system to proceed with the financial process to capture the amount.

    interface PaymentIntentCaptureAction {
        action: "capturePayment";
        amount: Amount;
        merchantReference?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    action: "capturePayment"

    Action to execute for the given Payment.

    amount: Amount

    Amount to be captured. It must be less than or equal to the authorized amount.

    merchantReference?: string

    A merchant-defined identifier associated with the Payment to track and reconcile the Payment Intent Action on the merchant's side. For example, an invoice number.