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

    Interface PlatformAnalyticEventSummariesRequest

    interface PlatformAnalyticEventSummariesRequest {
        end: string;
        groupBy: "user" | "app";
        nextToken?: string;
        start: string;
        where?: { id: string; type: "user" | "app" }[];
    }
    Index

    Properties

    end: string

    The end date and time of the requested summaries in ISO 8601 time format.

    groupBy: "user" | "app"

    How the events should be grouped.

    nextToken?: string

    A pagination token from a previous response. Used to fetch the next page.

    start: string

    The start date and time of the requested summaries in ISO 8601 time format.

    where?: { id: string; type: "user" | "app" }[]

    A list of items to filter events by. Only events which match ALL criteria will be included in the results.

    Type Declaration

    • id: string

      Id of the item to filter by - the hash uid if filtering a user, or the app id if filtering an app.

    • type: "user" | "app"

      The type of item to filter by.