Skip to content
Rasmus Wulff Jensen edited this page Nov 1, 2023 · 4 revisions

Back to Board Features

Update a Board

Signature

/// <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) {...}

Examples

var boardId = "63c939a5cea0cb006dc9e88b";
Board board = await _trelloClient.GetBoardAsync(boardId);
board.Name = "New name";
board.Description = "New Description";
Board updatedBoard = await _trelloClient.UpdateBoardAsync(board);
Clone this wiki locally