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

    Interface CheckoutErrorEvent

    Emitted when the hosted experience encounters an operational error.

    This event is distinct from a rejected CheckoutController.mount, which indicates that the SDK could not initialize Checkout. Recoverable hosted errors remain inside the payment UI; use the event for observability without rendering duplicate or more technical error copy around the frame.

    interface CheckoutErrorEvent {
        error: CheckoutErrorDetail;
        occurredAt: string;
        type: "error";
    }

    Hierarchy

    • CheckoutEventBase
      • CheckoutErrorEvent
    Index
    error: CheckoutErrorDetail

    Sanitized failure details safe for application telemetry.

    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: "error"

    Event discriminator.