Confluence.js - Cloud and Server API library
    Preparing search index...

    Interface GetAuditRecords

    interface GetAuditRecords {
        endDate?: string;
        limit?: number;
        searchString?: string;
        start?: number;
        startDate?: string;
    }
    Index

    Properties

    endDate?: string

    Filters the results to the records on or before the endDate. The endDate must be specified as a timestamp.

    limit?: number

    The maximum number of records to return per page. Note, this may be restricted by fixed system limits.

    searchString?: string

    Filters the results to records that have string property values matching the searchString.

    start?: number

    The starting index of the returned records.

    startDate?: string

    Filters the results to the records on or after the startDate. The startDate must be specified as a timestamp.