events: {
    "waiting.payment.redirect": (
        payloads: WaitingPaymentRedirect,
    ) => void | (StructuredEvent | DLStructured)[];
} = ...

List of Waiting page events

Type declaration

  • waiting.payment.redirect: (payloads: WaitingPaymentRedirect) => void | (StructuredEvent | DLStructured)[]

    waiting.payment.redirect event - Payment redirect during waiting page

    DataLayer Event example

    {
    event: 'ga_event',
    eventCategory: 'Waiting',
    eventAction: 'waiting.payment.redirect',
    eventLabel: '12345678'
    }

    SQL Query Example

    SELECT
    *
    FROM
    LAMBDA_DB.CUSTOMER_JOURNEY_MODELLED.STRUCTURED_EVENTS
    WHERE se_category = 'Waiting' AND se_action = 'waiting.payment.redirect'
    AND event_date BETWEEN CURRENT_DATE - 3 AND CURRENT_DATE