-
Notifications
You must be signed in to change notification settings - Fork 4
GetStickersOnCardAsync
Rasmus Wulff Jensen edited this page Nov 1, 2023
·
2 revisions
Get the List of Stickers on a card
/// <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) {...}
string cardId = "63c939a5cea0cb006dc9e9dd";
List<Sticker> stickers = await _trelloClient.GetStickersOnCardAsync(cardId);
If you are looking for info on a specific method in TrelloDotNet then expand the Pages above and input the 'MethodName' (Example: 'AddCardAsync')