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