Inttegro Web SDKs - v0.1.0
    Preparing search index...

    Interface CheckoutConfirmationRequiredEvent

    Emitted when a payment requires an additional payer step.

    The hosted experience owns the confirmation UI. The host application can use this event for non-sensitive analytics or to keep a modal open, but should not collect confirmation codes or intercept provider redirects.

    interface CheckoutConfirmationRequiredEvent {
        kind: "authorization" | "code" | "redirect";
        occurredAt: string;
        type: "confirmationRequired";
    }

    Hierarchy

    • CheckoutEventBase
      • CheckoutConfirmationRequiredEvent
    Index
    kind: "authorization" | "code" | "redirect"

    Shape of the next step: approval in another channel, an in-frame code, or a user-initiated redirect.

    occurredAt: string

    ISO 8601 timestamp recorded by hosted Checkout when the event occurred. Use it for ordering and telemetry context, not as proof of payment.

    type: "confirmationRequired"

    Event discriminator.