Interface SearchThreadsOptions

interface SearchThreadsOptions {
    archived?: boolean;
    limit?: number;
    maxID?: string;
    minID?: string;
    name?: string;
    offset?: number;
    slop?: number;
    sortBy?: ThreadSearchSortBy;
    sortOrder?: ThreadSearchSortOrder;
    tag?: string | string[];
    tagSetting?: ThreadSearchTagSetting;
}

Properties

archived?: boolean

Include archived threads.

limit?: number

The maximum number of threads to return.

maxID?: string

Search threads before this thread ID.

minID?: string

Search threads after this thread ID.

name?: string

The thread name to search for.

offset?: number

The offset into the search results.

slop?: number

The matching tolerance for the name query.

The field to sort by.

The sort order.

tag?: string | string[]

Restrict results to threads with these forum/media tags.

Whether all or any provided tags should match.