Interface CheckoutPaymentAuthorizationFailedEvent

Generated when an attempt to authorize a payment fails in Checkout. This failure could result from insufficient funds, incorrect payment details, expired cards, or risk related rejections.

interface CheckoutPaymentAuthorizationFailedEvent {
    createdAt: string;
    data: CheckoutMessagePaymentsPayloadBaseData;
    id: string;
    notificationType: string;
    resourceType: EventSubscriptionResourceTypeId;
    type: "CheckoutPaymentAuthorizationFailed";
}

Hierarchy (View Summary)

  • IEvent
    • CheckoutPaymentAuthorizationFailedEvent

Properties

createdAt: string

Date and time (UTC) the Event was generated.

An object containing details of the payment authorization that failed.

id: string

Unique identifier of the Event.

notificationType: string
type: "CheckoutPaymentAuthorizationFailed"

The type of Event that has occurred.