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

    Interface PlatformAnalyticReadsResponse

    interface PlatformAnalyticReadsResponse {
        date: string;
        reads: {
            integrations: {
                api: number;
                eoti: number;
                pipelines: number;
                [key: string]: unknown;
            };
            user: number;
            [key: string]: unknown;
        };
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index

    Properties

    Properties

    date: string

    The date of the requested summary.

    reads: {
        integrations: {
            api: number;
            eoti: number;
            pipelines: number;
            [key: string]: unknown;
        };
        user: number;
        [key: string]: unknown;
    }

    Total reads for the specified date.

    Type Declaration

    • [key: string]: unknown
    • integrations: { api: number; eoti: number; pipelines: number; [key: string]: unknown }

      Total integration reads for the realm on the specified date.

      • api: number

        Total API reads for the realm on the specified date.

      • eoti: number

        Total reads by anonymous users for the realm on the specified date.

      • pipelines: number

        Total pipeline reads for the realm on the specified date.

    • user: number

      Total user reads for the realm on the specified date.