-
Notifications
You must be signed in to change notification settings - Fork 3
RemoveStickerFromCardAction
Rasmus Wulff Jensen edited this page Nov 1, 2023
·
2 revisions
Back to Automation Action List
This Automation Action removes a specific Sticker from a card based on imageId
Option | Description |
---|---|
StickerImageIdToRemove |
ImageId of Sticker to Remove |
Automation sampleAutomation = new Automation("Remove warning Sticker when present and you complete last Checklist Item",
new CheckItemStateUpdatedOnCardTrigger(ChecklistItemState.Complete),
new List<IAutomationCondition>
{
new ChecklistItemsCompleteCondition()
},
new List<IAutomationAction>
{
new RemoveStickerFromCardAction(StickerDefaultImageId.Warning)
});
If you are looking for info on a specific method in TrelloDotNet then expand the Pages above and input the 'MethodName' (Example: 'AddCardAsync')