interface IListRequestOptions {
    ids?: number[];
    locationIds?: number[];
    order?: "asc" | "desc";
    page?: number;
    perPage?: number;
    search?: string;
    showHidden?: boolean;
}

Hierarchy (view full)

Properties

ids?: number[]

A list of the ids of specific entities to return.

locationIds?: number[]

Whether to search within specific locations

order?: "asc" | "desc"

Whether the entities should be returned in ascending or descending order.

page?: number

The page of entities to return. Defaults to the first page if no value is provided. This value is one-based.

perPage?: number

The number of entities to return per page. The maximum value is 200.

search?: string

A search string to filter the returned entities by.

showHidden?: boolean

Whether or not hidden entities should be returned. Defaults to false.