-
Notifications
You must be signed in to change notification settings - Fork 4
ReOpenBoardAsync
Rasmus Wulff Jensen edited this page Nov 1, 2023
·
4 revisions
ReOpen a Board that was previously archived
/// <summary>
/// ReOpen a Board that was previously archived
/// </summary>
/// <param name="boardId">The id of board that should be reopened</param>
/// <param name="cancellationToken">Cancellation Token</param>
/// <returns>The ReOpened Board</returns>
public async Task<Board> ReOpenBoardAsync(string boardId, CancellationToken cancellationToken = default) {...}
var boardId = "63c939a5cea0cb006dc9e88b";
Board reOpenedBoard = await _trelloClient.ReOpenBoardAsync(boardId);
If you are looking for info on a specific method in TrelloDotNet then expand the Pages above and input the 'MethodName' (Example: 'AddCardAsync')