{ "opencollection": "1.0.0", "info": { "name": "ClickUp Comments Authorization Webhooks API", "version": "2.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Webhooks", "type": "folder" }, "items": [ { "info": { "name": "Get webhooks", "type": "http" }, "http": { "method": "GET", "url": "https://api.clickup.com/api/v2/team/:team_id/webhook", "params": [ { "name": "team_id", "value": "", "type": "path", "description": "The unique identifier of the Workspace (team)." } ] }, "docs": "Retrieves all webhook subscriptions for a Workspace. Returns webhook details including the endpoint URL, subscribed events, status, and health information." }, { "info": { "name": "Create a webhook", "type": "http" }, "http": { "method": "POST", "url": "https://api.clickup.com/api/v2/team/:team_id/webhook", "params": [ { "name": "team_id", "value": "", "type": "path", "description": "The unique identifier of the Workspace (team)." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new webhook subscription for a Workspace. The webhook can be configured to listen for specific events and send notifications to a specified endpoint URL. A shared secret is returned for signature verification of incoming webhook payloads." }, { "info": { "name": "Update a webhook", "type": "http" }, "http": { "method": "PUT", "url": "https://api.clickup.com/api/v2/webhook/:webhook_id", "params": [ { "name": "webhook_id", "value": "", "type": "path", "description": "The unique identifier of the webhook." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates an existing webhook subscription. The endpoint URL, subscribed events, and status can be modified." }, { "info": { "name": "Delete a webhook", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.clickup.com/api/v2/webhook/:webhook_id", "params": [ { "name": "webhook_id", "value": "", "type": "path", "description": "The unique identifier of the webhook." } ] }, "docs": "Permanently deletes a webhook subscription. ClickUp will stop sending events to the endpoint URL immediately." } ] } ], "bundled": true }