AuditLogListOptions is defined in the Telligent.Evolution.Extensibility.Api.Version1 namespace of Telligent.Evolution.Platform.dll
Definition
class AuditLogListOptions
{
string[] Actions { get; set; }
DateTime? EndDate { get; set; }
string Node { get; set; }
int? PageIndex { get; set; }
int? PageSize { get; set; }
string SearchText { get; set; }
string SortBy { get; set; }
string SortOrder { get; set; }
string SourceId { get; set; }
string SourceType { get; set; }
DateTime? StartDate { get; set; }
int? UserId { get; set; }
}
Properties
| Name | Type | Description | Default | Options |
|---|---|---|---|---|
| Actions | string[] | Actions to filter the audit log entries by. | Authenticated, Created, Deleted, Edited, GroupTypeTemplateChanged, Impersonated, LoginFailed, PasswordChanged, PermissionsChanged, Restored, StoppedImpersonating | |
| EndDate | DateTime? | Returns only audit log entries before the End Date. | ||
| Node | string | Filter nodes where the action occurred. | ||
| PageIndex | int? | Page index | ||
| PageSize | int? | Page size | ||
| SearchText | string | Search text to filter the Entity Type, Entity Description or JsonData | ||
| SortBy | string | Sort By | AuditDate | |
| SortOrder | string | Sort Order | Ascending, Descending | |
| SourceId | string | Filter by specific origin source id, such as API Key id or OAuth client id. Only used when SourceType is also specified. | ||
| SourceType | string | Filter by originating source of the action. | ApiKey, Local, OAuth | |
| StartDate | DateTime? | Returns only audit log entries on or after the Start Date. | ||
| UserId | int? | Filter audit log entries by the Executing User Id or the Authenticated User Id. |