-
Notifications
You must be signed in to change notification settings - Fork 4
UpdateBoardAsync
Rasmus Wulff Jensen edited this page Nov 1, 2023
·
4 revisions
Update a Board
/// <summary>
/// Update a Board
/// </summary>
/// <param name="boardWithChanges">The board with the changes</param>
/// <param name="cancellationToken">Cancellation Token</param>
/// <returns>The Updated Card</returns>
public async Task<Board> UpdateBoardAsync(Board boardWithChanges, CancellationToken cancellationToken = default) {...}
var boardId = "63c939a5cea0cb006dc9e88b";
Board board = await _trelloClient.GetBoardAsync(boardId);
board.Name = "New name";
board.Description = "New Description";
Board updatedBoard = await _trelloClient.UpdateBoardAsync(board);
If you are looking for info on a specific method in TrelloDotNet then expand the Pages above and input the 'MethodName' (Example: 'AddCardAsync')