-
-
Notifications
You must be signed in to change notification settings - Fork 5
UpdateListAsync
Rasmus Wulff Jensen edited this page Nov 1, 2023
·
2 revisions
Update a List
/// <summary>
/// Update a List
/// </summary>
/// <param name="listWithChanges">The List with the changes</param>
/// <param name="cancellationToken">Cancellation Token</param>
/// <returns>The Updated List</returns>
public async Task<List> UpdateListAsync(List listWithChanges, CancellationToken cancellationToken = default) {...}var listId = "63d1239e857afaa8b003c633";
List list = await _trelloClient.GetListAsync(listId);
list.Name = "New Name";
List updatedListWithNewName = await _trelloClient.UpdateListAsync(list);If you are looking for info on a specific method in TrelloDotNet then expand the Pages above and input the 'MethodName' (Example: 'AddCardAsync')