PayFanout API reference
    Preparing search index...

    Interface ConfirmResult

    interface ConfirmResult {
        clientToken?: string;
        error?: UnifiedError;
        status:
            | "requires_payment_method"
            | "requires_confirmation"
            | "requires_action"
            | "requires_capture"
            | "processing"
            | "succeeded"
            | "canceled"
            | "failed";
    }
    Index
    clientToken?: string

    Present only for tokenize-first PSPs: the host must pass it to the server's completePayment. handles this branching.

    error?: UnifiedError
    status:
        | "requires_payment_method"
        | "requires_confirmation"
        | "requires_action"
        | "requires_capture"
        | "processing"
        | "succeeded"
        | "canceled"
        | "failed"