@jellyfin/sdk
    Preparing search index...

    Interface SystemApiGetLogEntriesRequest

    Request parameters for getLogEntries operation in SystemApi.

    interface SystemApiGetLogEntriesRequest {
        hasUserId?: boolean;
        itemId?: string;
        limit?: number;
        maxDate?: string;
        minDate?: string;
        name?: string;
        overview?: string;
        severity?: LogLevel;
        shortOverview?: string;
        sortBy?: ActivityLogSortBy[];
        sortOrder?: SortOrder[];
        startIndex?: number;
        type?: string;
        username?: string;
    }
    Index
    hasUserId?: boolean

    Filter log entries if it has user id, or not.

    itemId?: string

    Filter by item id.

    limit?: number

    The maximum number of records to return.

    maxDate?: string

    The maximum date.

    minDate?: string

    The minimum date.

    name?: string

    Filter by name.

    overview?: string

    Filter by overview.

    severity?: LogLevel

    Filter by log severity.

    shortOverview?: string

    Filter by short overview.

    Specify one or more sort orders. Format: SortBy=Name,Type.

    sortOrder?: SortOrder[]

    Sort Order..

    startIndex?: number

    The record index to start at. All items with a lower index will be dropped from the results.

    type?: string

    Filter by type.

    username?: string

    Filter by username.