Integration reference

ClickUp Trigger and Action reference

Create and update ClickUp tasks, post comments, set Custom Fields, and start Workflows from signed Workspace events.

30 Triggers7 ActionsManifests: Trigger v1 · Action v1

Authentication

Connect your ClickUp account through OAuth and authorize the Workspaces FastHook may access. FastHook encrypts the access token.

  • Trigger account type: oauth2; reconnect by oauth.
  • Action connection type: oauth2; available modes: Connected ClickUp account.

Create or reuse the account from a Trigger or Action dialog, or manage it under Settings → Connected accounts. See Authentication and permissions for scopes and access diagnostics, or Connected accounts for reuse, reconnect, revocation, and credential rotation.

Scopes and permissions

The Trigger manifest does not declare a fixed base OAuth scope list. Installation access, API credentials, or the selected event configuration can still control available resources.

Operation-specific requirements appear in the tables below. Custom event selections can add scopes dynamically, so the current Trigger or Action dialog remains authoritative for the exact consent request.

Use ClickUp as a Trigger

The current provider manifest contains 30 available Trigger definitions. Representative definitions include:

  • Task Created
  • Task Updated
  • Task Status Updated
  • Task Comment Posted
  • List Created
  • Goal Updated
View all 30 available Trigger definitions
TriggerManifest keyDeliveryAdditional scopes
Any ClickUp Eventclickup.any_event.instantinstantNone declared
Custom ClickUp Eventsclickup.custom_webhook_events.instantinstantNone declared
Task Createdclickup.task_created.instantinstantNone declared
Task Updatedclickup.task_updated.instantinstantNone declared
Task Deletedclickup.task_deleted.instantinstantNone declared
Task Priority Updatedclickup.task_priority_updated.instantinstantNone declared
Task Status Updatedclickup.task_status_updated.instantinstantNone declared
Task Assignee Updatedclickup.task_assignee_updated.instantinstantNone declared
Task Due Date Updatedclickup.task_due_date_updated.instantinstantNone declared
Task Tag Updatedclickup.task_tag_updated.instantinstantNone declared
Task Movedclickup.task_moved.instantinstantNone declared
Task Comment Postedclickup.task_comment_posted.instantinstantNone declared
Task Comment Updatedclickup.task_comment_updated.instantinstantNone declared
Task Time Estimate Updatedclickup.task_time_estimate_updated.instantinstantNone declared
Task Time Tracked Updatedclickup.task_time_tracked_updated.instantinstantNone declared
List Createdclickup.list_created.instantinstantNone declared
List Updatedclickup.list_updated.instantinstantNone declared
List Deletedclickup.list_deleted.instantinstantNone declared
Folder Createdclickup.folder_created.instantinstantNone declared
Folder Updatedclickup.folder_updated.instantinstantNone declared
Folder Deletedclickup.folder_deleted.instantinstantNone declared
Space Createdclickup.space_created.instantinstantNone declared
Space Updatedclickup.space_updated.instantinstantNone declared
Space Deletedclickup.space_deleted.instantinstantNone declared
Goal Createdclickup.goal_created.instantinstantNone declared
Goal Updatedclickup.goal_updated.instantinstantNone declared
Goal Deletedclickup.goal_deleted.instantinstantNone declared
Key Result Createdclickup.key_result_created.instantinstantNone declared
Key Result Updatedclickup.key_result_updated.instantinstantNone declared
Key Result Deletedclickup.key_result_deleted.instantinstantNone declared

Choose the narrowest event definition that fits the Workflow. Configure provider-specific resource and event filters in the Source dialog before adding broader Workflow Filters.

Use ClickUp Actions

The current Action manifest contains 7 operations. Representative Actions include:

  • Create Task
  • Update Task
  • Get Task
  • Add Task Comment
  • Set Custom Field
  • Custom API Request
View all 7 available Action definitions
ActionManifest keyAccess and authManifest rate limit
Create Taskclickup.create_taskNone declared
FastHook-managed account
1/second
Update Taskclickup.update_taskNone declared
FastHook-managed account
1/second
Get Taskclickup.get_taskNone declared
FastHook-managed account
1/second
Delete Taskclickup.delete_taskNone declared
FastHook-managed account
1/second
Add Task Commentclickup.add_commentNone declared
FastHook-managed account
1/second
Set Custom Fieldclickup.set_custom_fieldNone declared
FastHook-managed account
1/second
Custom API Requestclickup.custom_api_requestNone declared
FastHook-managed account
1/second

The Action editor reads its required permissions, fields, remote resource pickers, output schema, and rate limit from the provider manifest. Available fields can change with the selected operation and authentication mode.

Build a Workflow

  1. Create a Source using a ClickUp Trigger definition.
  2. Create a Workflow with that Source as its Trigger.
  3. Add the required ClickUp Action and select the connected account.
  4. Map Trigger or earlier-Step data into the Action fields with the field picker.
  5. Add a Filter, Paths, Delay, or Transformation when the route needs it.
  6. Activate the Workflow, produce a controlled event, and verify the run in Audit and in ClickUp.

Troubleshooting ClickUp

The account is missing or cannot be selected
Confirm the active FastHook team, provider, account status, and authentication mode. A disabled or revoked account cannot execute an Action.
A resource picker is empty
Verify that the connected provider identity can access the resource itself. OAuth consent does not add workspace, repository, channel, drive, project, base, or record permissions.
The editor asks for additional scopes
Reconnect the same account from the affected Trigger or Action so FastHook can request its current manifest scopes. Then reopen the editor and select the resource again.
An active Workflow returns 401, 403, or a permission error
Compare the selected operation’s access requirements below with the account recorded in Audit. Check provider-side membership and object access before repeating the Action.
The provider returns 429 or a temporary 5xx
Inspect the Step attempt and retryability in Audit. FastHook can retry temporary failures, but provider quotas and idempotency rules still apply.

Provider-specific checks

  • Select one or more authorized Workspaces. FastHook creates and maintains webhook subscriptions for the selected events, verifies X-Signature over the raw request body, and suppresses repeat deliveries.
  • ClickUp webhook payloads often contain resource IDs and change history rather than a complete task. Add Get Task when a later step needs the current task name, description, or Custom Fields; deleted tasks cannot be fetched.
  • For Create Task, choose a Workspace, Space, optional Folder, and List. Leave Folder empty for folderless Lists. Status names must match the destination List. Due dates use Unix milliseconds.
  • Webhook schemas are derived from official examples. They describe known fields and are not a guarantee that every field appears in every delivery.
  • Disconnecting removes FastHook-managed webhooks and disables the account locally. Revoke FastHook in ClickUp API settings to remove provider-side access. Webhooks belonging to disabled ClickUp users stop delivering events.

Next