Type alias QuickBaseRequestAudit

QuickBaseRequestAudit: QuickBaseRequest & {
    date: string;
    nextToken: string;
    numRows: number;
    queryId: string;
}

Type declaration

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