-
Notifications
You must be signed in to change notification settings - Fork 4
GetStickerAsync
Rasmus Wulff Jensen edited this page Nov 1, 2023
·
2 revisions
Get a Sticker with a specific Id
/// <summary>
/// Get a Sticker with a specific Id
/// </summary>
/// <param name="cardId">Id of the Card</param>
/// <param name="stickerId">Id of the Sticker</param>
/// <param name="cancellationToken">Cancellation Token</param>
/// <returns>The Sticker</returns>
public async Task<Sticker> GetStickerAsync(string cardId, string stickerId, CancellationToken cancellationToken = default) {...}
string cardId = "63c939a5cea0cb006dc9e9dd";
string stickerId = "3f5443a5ce54322dedc5e443"; //Reality check: Rare that you know this without getting it from a card so method is rarely used but is here for completeness
Sticker sticker = await _trelloClient.GetStickerAsync(cardId, stickerId);
If you are looking for info on a specific method in TrelloDotNet then expand the Pages above and input the 'MethodName' (Example: 'AddCardAsync')