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

    Interface PlatformAnalyticReadsResponse

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

    Indexable

    • [key: string]: unknown
    Index

    Properties

    Properties

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

    The data object containing the read summaries.

    Type Declaration

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

      Detailed read summaries for a specific date.

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

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