Skip to content
Rasmus Wulff Jensen edited this page Apr 1, 2025 · 1 revision

The GetListOptions class provides options for retrieving lists from Trello, allowing customization of the data returned and filtering of results.

Property Description
AdditionalParameters Send these additional parameters not supported out-of-the-box (should you need to do something to the query parameters not yet supported by this API).
BoardFields Specifies which board fields to include if IncludeBoard is set to True.
CardFields Specifies all or a comma-separated list of card fields to include. Defaults: badges, checkItemStates, closed, dateLastActivity, desc, descData, due, start, email, idBoard, idChecklists, idLabels, etc.
CardsFilterConditions Adds conditions for filtering the returned cards. Note: This is in-memory filtering as Trello's API does not support server-side filtering.
CardsOrderBy Specifies the order in which cards are returned (only used when multiple cards are returned).
Filter Specifies what kind of lists should be included (e.g., All, Closed, or Open).
IncludeBoard Indicates whether to return the board object the list is on. Default: False.
IncludeCards Specifies whether to return cards on the list. Default: None.

Clone this wiki locally