Skip to content

RemoveCoverFromCardAsync

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

Back to Cover Features

Remove a cover from a Card

Signature

/// <summary>
/// Remove a cover from a Card
/// </summary>
/// <param name="cardId">Id of Card</param>
/// <param name="cancellationToken">Cancellation Token</param>
/// <returns>The Card with the removed Cover</returns>
public async Task<Card> RemoveCoverFromCardAsync(string cardId, CancellationToken cancellationToken = default) {...}

Examples

var cardId = "63c939a5cea0cb006dc9e9dd";

await _trelloClient.RemoveCoverFromCardAsync(cardId);
Clone this wiki locally