Skip to content
Rasmus Wulff Jensen edited this page Nov 1, 2023 · 3 revisions

Back to Weebhook Features

Delete a Webhook (WARNING: THERE IS NO WAY GOING BACK!!!).

Signature

/// <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) {...}

Examples

string webhookId = "asdsad333l3oo33999k33";

await _trelloClient.DeleteWebhookAsync(webhookId);
Clone this wiki locally