-
-
Notifications
You must be signed in to change notification settings - Fork 5
DeleteStickerAsync
Rasmus Wulff Jensen edited this page Nov 1, 2023
·
2 revisions
Delete a sticker (WARNING: THERE IS NO WAY GOING BACK!!!).
/// <summary>
/// Delete a sticker (WARNING: THERE IS NO WAY GOING BACK!!!).
/// </summary>
/// <param name="cardId">Id of Card that have the sticker</param>
/// <param name="stickerId">Id of the sticker</param>
/// <param name="cancellationToken">Cancellation Token</param>
public async Task DeleteStickerAsync(string cardId, string stickerId, CancellationToken cancellationToken = default) {...}string cardId = "63c939a5cea0cb006dc9e9dd";
string stickerId = "3f5443a5ce54322dedc5e443";
await TrelloClient.DeleteStickerAsync(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')