create_webhook
Set up a webhook that sends ClickUp event data to your HTTPS endpoint, with optional scoping to a specific space, folder, list, or task for granular monitoring.
Instructions
Create a webhook that POSTs event payloads to your HTTPS endpoint. Optionally scope it to a single space, folder, list or task; omit all scopes to watch the whole Workspace. Returns the created webhook with its id and signing secret.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| team_id | No | Team/Workspace ID. Falls back to CLICKUP_TEAM_ID when omitted. | |
| endpoint | Yes | HTTPS URL that will receive the event POST requests. | |
| events | Yes | Event names to subscribe to (e.g. ["taskCreated","taskStatusUpdated"]). List all events to receive everything. | |
| space_id | No | Optional Space id to scope the webhook to a single Space. | |
| folder_id | No | Optional Folder id to scope the webhook to a single Folder. | |
| list_id | No | Optional List id to scope the webhook to a single List. | |
| task_id | No | Optional Task id to scope the webhook to a single task. |