-
Notifications
You must be signed in to change notification settings - Fork 4
GetBoardOptions
Rasmus Wulff Jensen edited this page Apr 1, 2025
·
2 revisions
The GetBoardOptions
class provides options for customizing the data retrieved when fetching boards. This allows for performance optimization and tailored data retrieval.
Property | Description |
---|---|
ActionsTypes | Provide one or more action types (TrelloDotNet.Model.Webhook.WebhookActionTypes) to include with the board. |
AdditionalParameters | Additional parameters not supported out-of-the-box. |
BoardFields | Specifies which board fields to include if IncludeBoard is set to true. |
CardsFilterConditions | Add conditions to filter the returned card data (in-memory filtering, as Trello's API does not support server-side filtering). |
CardsOrderBy | Specifies the order of cards returned (used when multiple cards are returned). |
CardFields | Specifies which card fields to include if IncludeCards is set to a value other than None . Defaults include badges, checkItemStates, closed, dateLastActivity, desc, due, start, email, idBoard, etc. |
Filter | Specifies the types of boards to return (e.g., all, closed, open, starred). |
IncludeCards | Specifies whether to return cards on the board (default: None). Note: This option only works when retrieving a single board. |
IncludeLabels | Specifies whether to return labels on the board (default: False). |
IncludeLists | Specifies whether to return lists on the board (default: None). |
IncludeOrganization | Specifies whether to return the organization of the board (default: False). |
IncludePluginData | Specifies whether to return plugin data of the card (default: False). |
OrganizationFields | Specifies which organization (workspace) fields to include if IncludeBoard is set to true. |
TypesOfBoardsToInclude | Specifies the types of boards to include in a multi-board result (default: All). |
If you are looking for info on a specific method in TrelloDotNet then expand the Pages above and input the 'MethodName' (Example: 'AddCardAsync')