1

I am having an issue were my trello board won't update from my below code sets the "CurrentCard" to list 4 on my trello board. I looked at Manatee.Trello Moving Cards but i am not sure i am following.

var CurrentCard = Trelloboard.Lists[index].Cards[CardIndex];
CurrentCard.Position = 4;
cambria
  • 49
  • 6

1 Answers1

0
            var otherList  = Trelloboard.Lists.Last();//The List to which you want to move the card to.

            var CurrentCard = Trelloboard.Lists[index].Cards[0];// The current card you want to move

            CurrentCard.List = otherList;//applying the "otherList" to the "CurrentCard"'s List attribute.
cambria
  • 49
  • 6