clickup_get_webhooks
List all webhooks registered in a ClickUp workspace, including delivery health status and failure count, to audit endpoints and identify failing subscriptions.
Instructions
List the webhooks registered in a Workspace, with their delivery health.
Returns every webhook the authenticating token created for the Workspace,
surfacing each hook's health.status (active / failing) and fail_count
so you can spot a broken endpoint before re-pointing or re-enabling it.
When to Use:
To find a webhook's id before
clickup_update_webhook/clickup_delete_webhook.To audit which endpoints are subscribed and whether any are failing.
When NOT to Use:
To create a new webhook — use
clickup_create_webhook.
Returns: A list of webhooks (endpoint, id, health status, events, and any location filter). Only webhooks created by the authenticating user are returned.
Examples:
params = {}
params = {"team_id": "9008", "response_format": "json"}
Error Handling:
404 → unknown team id; 401 → bad token. Errors return an Error ... string.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |