Type alias QuickBaseRequestPlatformAnalyticEventSummaries

QuickBaseRequestPlatformAnalyticEventSummaries: QuickBaseRequest & {
    accountId?: number;
    end: string;
    groupBy: "app" | "user";
    nextToken?: string;
    start: string;
    where?: {
        id: string;
        type: "app" | "user";
    }[];
}

Type declaration

  • Optional accountId?: number

    The ID of the account to query. If no value is specified, the first account matching the provided domain is chosen.

  • end: string

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

  • groupBy: "app" | "user"

    How the events should be grouped.

  • Optional 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.

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

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