Table of Contents

Class GetLogsRequest

Namespace
Auth0.ManagementApi.Models
Assembly
Auth0.ManagementApi.dll

Specifies criteria to use when querying all logs.

public class GetLogsRequest
Inheritance
GetLogsRequest
Inherited Members

Properties

Fields

A comma separated list of fields to include or exclude (depending on IncludeFields) from the result.

public string Fields { get; set; }

Property Value

string

From

Log Event Id to start retrieving logs. You can limit the amount of logs using the Take parameter.

public string From { get; set; }

Property Value

string

IncludeFields

Specifies whether the fields specified in Fields should be included or excluded in the result.

public bool? IncludeFields { get; set; }

Property Value

bool?

Query

Query in Lucene query string syntax.

public string Query { get; set; }

Property Value

string

Sort

The field to use for sorting. Use field:order where order is 1 for ascending and -1 for descending.

public string Sort { get; set; }

Property Value

string

Remarks

e.g. date:-1

Take

The total amount of entries to retrieve when using the From parameter. Default: 50. Max value: 100

public int? Take { get; set; }

Property Value

int?