clickup-webhooks-events

Featured

Create and manage ClickUp webhooks for real-time event notifications. Use when setting up webhook listeners for task/list/space events, implementing two-way sync, or handling ClickUp event payloads. Trigger: "clickup webhook", "clickup events", "clickup notifications", "clickup real-time", "clickup event listener", "clickup webhook create".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# ClickUp Webhooks & Events ## Overview ClickUp webhooks send HTTP POST notifications when resources change. Register webhooks via API, subscribe to specific events, and receive payloads with `history_items` showing what changed. ## Webhook Endpoints ``` POST /api/v2/team/{team_id}/webhook Create webhook GET /api/v2/team/{team_id}/webhook Get webhooks PUT /api/v2/webhook/{webhook_id} Update webhook DELETE /api/v2/webhook/{webhook_id} Delete webhook ``` ## Create a Webhook ```typescript async function createWebhook(teamId: string, endpoint: string, events: string[]) { return clickupRequest(`/team/${teamId}/webhook`, { method: 'POST', body: JSON.stringify({ endpoint, // Your HTTPS URL events, // Array of event names space_id: null, // Optional: limit to specific space folder_id: null, // Optional: limit to specific folder list_id: null, // Optional: limit to specific list task_id: null, // Optional: limit to specific task }), }); } // Subscribe to task and list events const webhook = await createWebhook('1234567', 'https://myapp.com/webhooks/clickup', [ 'taskCreated', 'taskUpdated', 'taskDeleted', 'taskStatusUpdated', 'taskAssigneeUpdated', 'taskDueDateUpdated', 'taskCommentPosted', 'taskTimeTrackedUpdated', 'listCreated', 'listUpdated', 'listDeleted', ]); // Response: // { "id": "wh_abc123", "webhook": { "id": "...", "endpoint": "...", "events": [...] ...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

clickup-core-workflow-b

Manage ClickUp workspaces, spaces, folders, lists, and views via API v2. Use when creating project structures, organizing spaces and lists, or managing the ClickUp hierarchy programmatically. Trigger: "clickup space", "clickup folder", "clickup list", "clickup views", "create clickup space", "organize clickup workspace", "clickup hierarchy".

2,266 Updated today
jeremylongshore
AI & Automation Featured

instantly-webhooks-events

Implement Instantly.ai webhook event handling with real API v2 event types. Use when setting up webhook endpoints, processing email events, or building CRM sync pipelines from Instantly notifications. Trigger with phrases like "instantly webhook", "instantly events", "instantly webhook handler", "handle instantly events", "instantly notifications".

2,266 Updated today
jeremylongshore
AI & Automation Featured

customerio-webhooks-events

Implement Customer.io webhook and reporting event handling. Use when processing email delivery events, click/open tracking, bounce handling, or streaming to a data warehouse. Trigger: "customer.io webhook", "customer.io events", "customer.io delivery status", "customer.io bounces", "customer.io open tracking".

2,266 Updated today
jeremylongshore
AI & Automation Featured

apollo-webhooks-events

Implement Apollo.io webhook and event-driven integrations. Use when receiving Apollo notifications, syncing data on changes, or building event-driven pipelines from Apollo activity. Trigger with phrases like "apollo webhooks", "apollo events", "apollo notifications", "apollo webhook handler", "apollo triggers".

2,266 Updated today
jeremylongshore
AI & Automation Featured

linktree-webhooks-events

Webhooks Events for Linktree. Trigger: "linktree webhooks events".

2,266 Updated today
jeremylongshore