Interface SearchOptions

Represents search options for querying files.

interface SearchOptions {
    binModifiedAt?: SearchCriteria;
    createdAt?: SearchCriteria;
    db?: DatabaseSearchCriteria;
    dbLang?: string;
    description?: SearchCriteria;
    folderId?: string;
    limit?: number;
    modifiedAt?: SearchCriteria;
    name?: SearchCriteria;
    offset?: number;
    recursive?: boolean;
    tagId?: string;
    tagName?: string;
}

Properties

binModifiedAt?: SearchCriteria

Search criteria for the last time the file was modified.

createdAt?: SearchCriteria

Search criteria for file creation time.

Search criteria for database fields.

dbLang?: string

The database language (required if using db field for search).

description?: SearchCriteria

Search criteria for the file description.

folderId?: string

The Studio folder ID to search within.

limit?: number

The maximum number of results to return.

modifiedAt?: SearchCriteria

Search criteria for file information modification time.

Search criteria for the file name.

offset?: number

The number of results to skip before returning results.

recursive?: boolean

Whether to include subfolders in the search.

tagId?: string

Find by tag ID. Exact match.

tagName?: string

Find by tag name. Exact match.