client.Webhooks to configure the URL that receives instance events and to inspect delivery logs.
client.Webhooks.GetAsync<TResponse>(instanceId, options?)
Returns the current webhook configuration for the instance.
{ Code, Success, Data } with Webhook and subscribe (events).
client.Webhooks.SetAsync<TResponse>(request)
Sets the webhook URL and subscribed events.
{ Code, Success, Data } with configured Webhook and Events.
client.Webhooks.SearchLogsAsync<TResponse>(request)
Searches webhook delivery logs.
{ Code, Success, Data } with paginated logs (content[], totals).
client.Webhooks.GetLogAsync<TResponse>(request)
Reads a specific log.
{ Code, Success, Data } with one delivery log (status, payload, attempts, etc.).
client.Webhooks.RetryLogAsync<TResponse>(request)
Retries a delivery registered in the log.
{ Code, Success, Data } confirming callback retry.

