ActivityLogApi - functional programming interface

  • Parameters

    Returns {
        getLogEntries(
            startIndex?: number,
            limit?: number,
            minDate?: string,
            hasUserId?: boolean,
            options?: RawAxiosRequestConfig,
        ): Promise<
            (
                axios?: AxiosInstance,
                basePath?: string,
            ) => AxiosPromise<ActivityLogEntryQueryResult>,
        >;
    }

    • getLogEntries:function
      • Parameters

        • OptionalstartIndex: number

          Optional. The record index to start at. All items with a lower index will be dropped from the results.

        • Optionallimit: number

          Optional. The maximum number of records to return.

        • OptionalminDate: string

          Optional. The minimum date. Format = ISO.

        • OptionalhasUserId: boolean

          Optional. Filter log entries if it has user id, or not.

        • Optionaloptions: RawAxiosRequestConfig

          Override http request option.

        Returns Promise<
            (
                axios?: AxiosInstance,
                basePath?: string,
            ) => AxiosPromise<ActivityLogEntryQueryResult>,
        >