-
Notifications
You must be signed in to change notification settings - Fork 4
DeleteWebhookAsync
Rasmus Wulff Jensen edited this page Nov 1, 2023
·
3 revisions
Delete a Webhook (WARNING: THERE IS NO WAY GOING BACK!!!).
/// <summary>
/// Delete a Webhook (WARNING: THERE IS NO WAY GOING BACK!!!).
/// </summary>
/// <param name="webhookId">The id of the Webhook to Delete</param>
/// <param name="cancellationToken">Cancellation Token</param>
public async Task DeleteWebhookAsync(string webhookId, CancellationToken cancellationToken = default) {...}
string webhookId = "asdsad333l3oo33999k33";
await _trelloClient.DeleteWebhookAsync(webhookId);
If you are looking for info on a specific method in TrelloDotNet then expand the Pages above and input the 'MethodName' (Example: 'AddCardAsync')