clickup_webhook_create
Register an HTTPS endpoint to receive ClickUp events like task creation, status changes, or comment posts. Optionally scope to a space, folder, list, or task.
Instructions
Register an HTTPS endpoint that ClickUp will POST events to as things happen in the workspace (tasks created, comments added, status changes, etc.). Optionally scope the webhook to a single space, folder, list, or task. The response includes a 'secret' you should use to verify the X-Signature header on incoming payloads. Returns the created webhook object.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| endpoint | Yes | Public HTTPS URL that will receive event POSTs. Must respond 2xx within 5 seconds or ClickUp will retry/suspend. | |
| events | Yes | Event names to subscribe to (e.g. ['taskCreated','taskUpdated','taskStatusUpdated','commentPosted']). Pass ['*'] to subscribe to every event ClickUp emits. | |
| folder_id | No | Scope events to this folder only. Mutually exclusive with space_id/list_id/task_id. | |
| list_id | No | Scope events to this list only. Mutually exclusive with space_id/folder_id/task_id. | |
| space_id | No | Scope events to this space only. Mutually exclusive with folder_id/list_id/task_id. | |
| task_id | No | Scope events to this task only. Mutually exclusive with space_id/folder_id/list_id. | |
| team_id | No | Workspace (team) ID. Omit to use the default workspace from config. |