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

Back to List Features

Signature

/// <summary>
/// Reopen a List (Send back to the board)
/// </summary>
/// <param name="listId">The id of list that should be Reopened</param>
/// <param name="cancellationToken">Cancellation Token</param>
/// <returns>The Archived List</returns>
public async Task<List> ReOpenListAsync(string listId, CancellationToken cancellationToken = default) {...}

Examples

var listId = "63d1239e857afaa8b003c633";
List archivedList = await _trelloClient.ArchiveListAsync(listId);

List unarchivedList = await _trelloClient.ReOpenListAsync(listId);
Clone this wiki locally