-
Notifications
You must be signed in to change notification settings - Fork 4
GetWebhookAsync
Rasmus Wulff Jensen edited this page Nov 1, 2023
·
3 revisions
Get a Webhook from its Id
/// <summary>
/// Get a Webhook from its Id
/// </summary>
/// <param name="webhookId">Id of the Webhook</param>
/// <param name="cancellationToken">Cancellation Token</param>
/// <returns>The Webhook</returns>
public async Task<Webhook> GetWebhookAsync(string webhookId, CancellationToken cancellationToken = default) {...}
var webhookId = "3423343ffe344ea0cb0c9e565";
Webhook webhook = await _trelloClient.GetWebhookAsync(webhookId);
If you are looking for info on a specific method in TrelloDotNet then expand the Pages above and input the 'MethodName' (Example: 'AddCardAsync')