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

    Interface CheckoutPaymentAttemptFailedEvent

    Emitted when one payment attempt ends without completing the Order.

    If recoverable is true, Checkout remains responsible for presenting an appropriate retry or correction path. If false, do not force an automatic retry; allow Checkout to show the terminal outcome and reconcile Order state from your server.

    interface CheckoutPaymentAttemptFailedEvent {
        code: string;
        occurredAt: string;
        recoverable: boolean;
        type: "paymentAttemptFailed";
    }

    Hierarchy

    • CheckoutEventBase
      • CheckoutPaymentAttemptFailedEvent
    Index
    code: string

    Stable hosted-checkout failure code for telemetry and coarse UI decisions.

    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.

    recoverable: boolean

    Whether the same Checkout can offer the payer another attempt.

    type: "paymentAttemptFailed"

    Event discriminator.