Member Junction
    Preparing search index...

    Interface PermissionAuditFilter

    Filter options for PermissionEngine.GetAuditTimeline(). All fields are optional; an empty filter returns the most recent entries across all domains.

    interface PermissionAuditFilter {
        ChangedByUserID?: string;
        DomainName?: string;
        EndDate?: Date;
        MaxRows?: number;
        RecordID?: string;
        StartDate?: Date;
    }
    Index

    Properties

    ChangedByUserID?: string

    Limit to changes made by this user.

    DomainName?: string

    Limit to changes on a specific domain (e.g., "Dashboard Permissions").

    EndDate?: Date

    End of the date range (inclusive).

    MaxRows?: number

    Maximum rows to return (default 500).

    RecordID?: string

    Limit to a specific permission record.

    StartDate?: Date

    Start of the date range (inclusive).