Skip to content

GetStickersOnCardAsync

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

Back to Sticker Features

Get the List of Stickers on a card

Signature

/// <summary>
/// Get the List of Stickers on a card
/// </summary>
/// <param name="cardId">Id of the Card</param>
/// <param name="cancellationToken">Cancellation Token</param>
/// <returns>The List of Stickers</returns>
public async Task<List<Sticker>> GetStickersOnCardAsync(string cardId, CancellationToken cancellationToken = default) {...}

Examples

string cardId = "63c939a5cea0cb006dc9e9dd";
List<Sticker> stickers = await _trelloClient.GetStickersOnCardAsync(cardId);
Clone this wiki locally