-
Notifications
You must be signed in to change notification settings - Fork 4
RemoveCardDataAction
Rasmus Wulff Jensen edited this page Nov 1, 2023
·
2 revisions
Back to Automation Action List
Action to remove one or more field values on a card
Option | Description |
---|---|
DataToRemove (Required) |
A list of data to remove (StartDate , DueDate , DueComplete , Description , AllLabels , AllMembers , AllChecklists , AllAttachments , AllComments , Cover and/or AllStickers ) |
Automation sampleAutomation = new Automation("Remove all Previous Members, Labels and Start/Due Dates when card is moved to board from another",
new CardMovedToBoardTrigger(),
null, //No conditions
new List<IAutomationAction>
{
new RemoveCardDataAction(
RemoveCardDataType.AllMembers,
RemoveCardDataType.AllLabels,
RemoveCardDataType.StartDate,
RemoveCardDataType.DueDate)
});
If you are looking for info on a specific method in TrelloDotNet then expand the Pages above and input the 'MethodName' (Example: 'AddCardAsync')