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