clickup_webhook_update
Modify ClickUp webhook configurations to change event subscriptions, update delivery endpoints, or pause/resume notifications without deleting webhooks.
Instructions
Change the delivery endpoint, subscribed events, or active status of a ClickUp webhook. To temporarily pause deliveries without losing the webhook config, set status='suspended' (then resume later with status='active'). Returns the updated webhook object.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| endpoint | No | New HTTPS URL that ClickUp will POST events to. Must be publicly reachable and respond with 2xx within 5 seconds. | |
| events | No | New list of event names to subscribe to (e.g. ['taskCreated','taskUpdated']). Pass ['*'] to subscribe to every event. Omit to leave subscriptions unchanged. | |
| status | No | 'active' to deliver events; 'suspended' to pause deliveries without deleting the webhook. | |
| webhook_id | Yes | ID of the webhook to update. Obtain from clickup_webhook_list (field: id). |