Request parameters for getGenres operation in GenresApi.

GenresApiGetGenresRequest

interface GenresApiGetGenresRequest {
    enableImages?: boolean;
    enableImageTypes?: ImageType[];
    enableTotalRecordCount?: boolean;
    excludeItemTypes?: BaseItemKind[];
    fields?: ItemFields[];
    imageTypeLimit?: number;
    includeItemTypes?: BaseItemKind[];
    isFavorite?: boolean;
    limit?: number;
    nameLessThan?: string;
    nameStartsWith?: string;
    nameStartsWithOrGreater?: string;
    parentId?: string;
    searchTerm?: string;
    sortBy?: ItemSortBy[];
    sortOrder?: SortOrder[];
    startIndex?: number;
    userId?: string;
}

Properties

enableImages?: boolean

Optional, include image information in output.

GenresApiGetGenres

enableImageTypes?: ImageType[]

Optional. The image types to include in the output.

GenresApiGetGenres

enableTotalRecordCount?: boolean

Optional. Include total record count.

GenresApiGetGenres

excludeItemTypes?: BaseItemKind[]

Optional. If specified, results will be filtered out based on item type. This allows multiple, comma delimited.

GenresApiGetGenres

fields?: ItemFields[]

Optional. Specify additional fields of information to return in the output.

GenresApiGetGenres

imageTypeLimit?: number

Optional, the max number of images to return, per image type.

GenresApiGetGenres

includeItemTypes?: BaseItemKind[]

Optional. If specified, results will be filtered in based on item type. This allows multiple, comma delimited.

GenresApiGetGenres

isFavorite?: boolean

Optional filter by items that are marked as favorite, or not.

GenresApiGetGenres

limit?: number

Optional. The maximum number of records to return.

GenresApiGetGenres

nameLessThan?: string

Optional filter by items whose name is equally or lesser than a given input string.

GenresApiGetGenres

nameStartsWith?: string

Optional filter by items whose name is sorted equally than a given input string.

GenresApiGetGenres

nameStartsWithOrGreater?: string

Optional filter by items whose name is sorted equally or greater than a given input string.

GenresApiGetGenres

parentId?: string

Specify this to localize the search to a specific item or folder. Omit to use the root.

GenresApiGetGenres

searchTerm?: string

The search term.

GenresApiGetGenres

sortBy?: ItemSortBy[]

Optional. Specify one or more sort orders, comma delimited.

GenresApiGetGenres

sortOrder?: SortOrder[]

Sort Order - Ascending,Descending.

GenresApiGetGenres

startIndex?: number

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

GenresApiGetGenres

userId?: string

User id.

GenresApiGetGenres