-
Notifications
You must be signed in to change notification settings - Fork 4
GetInboxCardOptions
Rasmus Wulff Jensen edited this page Apr 1, 2025
·
1 revision
The GetInboxCardOptions
provides options for customizing the retrieval of cards from your Trello Inbox. These options allow you to specify which fields, attachments, checklists, and other data should be included in the response, as well as filtering and ordering capabilities.
Property | Description |
---|---|
ActionsTypes | Provide one or more Card-action types (TrelloDotNet.Model.Webhook.WebhookActionTypes) to get them included with the Card. |
AdditionalParameters | Additional parameters not supported out-of-the-box. |
AttachmentFields | Specifies which attachment fields to include if IncludeAttachments is set to True or Cover . |
Before | A Card ID used for pagination (only return cards before this Card ID was created). |
CardFields | Here you can specify what fields you wish to have back in your result. This is primarily done for performance reasons in that if you, for example get all cards on a board just to make a bullet list of card-names with a URL, there is no need to waste time getting all the cards Description as an example |
ChecklistFields | Specifies which checklist fields to include if IncludeChecklists is set to True . |
Filter | Specifies what kind of cards should be included (Active, Closed/Archived, or All). |
FilterConditions | Adds conditions for in-memory filtering of the data returned (Trello's API does not support server-side filtering). |
IncludeAttachments | Controls whether cards should include their attachments (Default: False). |
IncludeChecklists | Specifies whether to return checklist objects for members on the card (Default: False). |
IncludeCustomFieldItems | Specifies whether to return CustomFieldsItem objects of the card (Default: False). |
Limit | Limit how many objects are returned |
OrderBy | Specifies the order in which the cards are returned (only used when multiple cards are returned). |
Since | A Card ID used for pagination (only return cards since this Card ID was created). |
This class is used in methods like GetCardsInInboxAsync to customize the data retrieved from the Trello Inbox.
If you are looking for info on a specific method in TrelloDotNet then expand the Pages above and input the 'MethodName' (Example: 'AddCardAsync')