Interface GetAuditLogOptions

interface GetAuditLogOptions {
    actionType?: AuditLogActionTypes;
    before?: string;
    limit?: number;
    userID?: string;
}

Properties

actionType?: AuditLogActionTypes

The action type to filter by.

before?: string

The ID of the entry to get entries before.

limit?: number

The maximum number of entries to get.

userID?: string

The ID of the user to filter by.