-
Notifications
You must be signed in to change notification settings - Fork 4
AddMembersToCardAction
Rasmus Wulff Jensen edited this page Nov 1, 2023
·
2 revisions
Back to Automation Action List
This Automation Action adds a set of Members to a card if they are not already present.
Option | Description |
---|---|
MemberIds (Required) |
The Member-ids to add |
TreatMemberNameAsId (Optional) |
TreatMemberNameAsId |
Automation sampleAutomation = new Automation("When Card is moved to the 'Testing' column, Add a member 'Mike Tester' to the card",
new CardMovedToListTrigger(CardMovedToListTriggerConstraint.AnyOfTheseListsAreMovedTo, "Testing") { TreatListNameAsId = true },
null, // No conditions necessary
new List<IAutomationAction>
{
new AddMembersToCardAction("Mike Tester") { TreatMemberNameAsId = true}
});
If you are looking for info on a specific method in TrelloDotNet then expand the Pages above and input the 'MethodName' (Example: 'AddCardAsync')