Type alias QuickBaseResponseGetAppEvents

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

Type declaration

  • isActive: boolean

    Indication of whether current event is active.

  • name: string

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

  • owner: {
        email: string;
        id: string;
        name: string;
        userName: string;
    }

    The user that owns the event.

    • email: string

      User email.

    • id: string

      User Id.

    • name: string

      User full name.

    • userName: string

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

  • tableId: string

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

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

    Type of an event.

  • url: string

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