QuickBase JS SDK v2 - v2.2.2
    Preparing search index...

    Type Alias GetAppEventsResponse

    GetAppEventsResponse: {
        isActive?: boolean;
        name?: string;
        owner?: {
            email?: string;
            id?: string;
            name?: string;
            userName?: string;
            [key: string]: unknown;
        };
        tableId?: string;
        type?: | "webhook"
        | "qb-action"
        | "email-notification"
        | "subscription"
        | "reminder"
        | "automation";
        url?: string;
        [key: string]: unknown;
    }[]

    Type Declaration

    • [key: string]: unknown
    • OptionalisActive?: boolean

      Indication of whether current event is active.

    • Optionalname?: string

      The name of the event. This property is not returned for automations.

    • Optionalowner?: {
          email?: string;
          id?: string;
          name?: string;
          userName?: string;
          [key: string]: unknown;
      }

      The user that owns the event.

      • Optionalemail?: string

        User email.

      • Optionalid?: string

        User Id.

      • Optionalname?: string

        User full name.

      • OptionaluserName?: string

        User Name as updated in user properties. Optional, appears if not the same as user email.

    • OptionaltableId?: string

      The unique identifier of the table to which event belongs to.

    • Optionaltype?:
          | "webhook"
          | "qb-action"
          | "email-notification"
          | "subscription"
          | "reminder"
          | "automation"

      Type of an event.

    • Optionalurl?: string

      The url to automation that can be accessed from the browser. Only returned for automations.