Auth0 Node.js SDK - v5.0.0
    Preparing search index...

    Interface ListLogsRequestParameters

    {}
    
    interface ListLogsRequestParameters {
        page?: number;
        per_page?: number;
        sort?: string;
        fields?: string;
        include_fields?: boolean;
        include_totals?: boolean;
        q?: string;
    }
    Index

    Properties

    page?: number

    Page index of the results to return. First page is 0.

    per_page?: number

    Number of results per page. Paging is disabled if parameter not sent. Default: 50. Max value: 100

    sort?: string

    Field to use for sorting appended with :1 for ascending and :-1 for descending. e.g. date:-1

    fields?: string

    Comma-separated list of fields to include or exclude (based on value provided for include_fields) in the result. Leave empty to retrieve all fields.

    include_fields?: boolean

    Whether specified fields are to be included (true) or excluded (false)

    include_totals?: boolean

    Return results as an array when false (default). Return results inside an object that also contains a total result count when true.

    q?: string