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

    Interface AuditRequest

    Get audit logs

    interface AuditRequest {
        date?: string;
        nextToken?: string;
        numRows?: number;
        queryId?: string;
        topics?: string[];
    }
    Index

    Properties

    date?: string

    The date for which audit logs need to be fetched. This must be date-time only, as YYYY-MM-DD, and a valid date in the past.

    nextToken?: string

    Token specifying start of page. For first page don't supply this.

    numRows?: number

    Number of logs to return per page, default is 10000, minimum is 1000, max is 50000.

    queryId?: string

    The query id of an audit log request. This id is needed to fetch subsequent paged results of a single query.

    topics?: string[]

    An array that may contain up to 20 topics to filter by. If empty, all topics are returned.