ClickUp

Usage Instructions

Integrate ClickUp into the workflow. Create, read, update, and delete tasks, manage comments, tags, folders, and lists, upload attachments, and look up workspaces, members, and custom fields. Can also trigger workflows on ClickUp events like task, list, folder, space, and goal changes.

Actions

clickup_create_task

Create a new task in a ClickUp list

Input

ParameterTypeRequiredDescription
listIdstringYesID of the list to create the task in
namestringYesName of the task
descriptionstringNoPlain text description of the task
markdownContentstringNoMarkdown description of the task (overrides description)
statusstringNoStatus to create the task with (must exist in the list)
prioritynumberNoPriority: 1 (urgent), 2 (high), 3 (normal), 4 (low)
dueDatenumberNoDue date as a Unix timestamp in milliseconds
dueDateTimebooleanNoWhether the due date includes a time of day
startDatenumberNoStart date as a Unix timestamp in milliseconds
startDateTimebooleanNoWhether the start date includes a time of day
assigneesarrayNoUser IDs to assign to the task
tagsarrayNoTag names to apply to the task
timeEstimatenumberNoTime estimate in milliseconds
pointsnumberNoSprint points for the task
parentstringNoParent task ID to create this task as a subtask
notifyAllbooleanNoWhen true, creation notifications are sent to everyone, including the task creator

Output

ParameterTypeDescription
taskjsonThe created task

clickup_get_task

Retrieve a task from ClickUp by ID

Input

ParameterTypeRequiredDescription
taskIdstringYesID of the task to retrieve
includeSubtasksbooleanNoInclude subtasks in the response
includeMarkdownDescriptionbooleanNoReturn the task description in Markdown format

Output

ParameterTypeDescription
taskjsonThe requested task

clickup_update_task

Update an existing task in ClickUp

Input

ParameterTypeRequiredDescription
taskIdstringYesID of the task to update
namestringNoNew name for the task
descriptionstringNoNew plain text description (use a single space to clear)
markdownContentstringNoNew Markdown description (takes precedence over description)
statusstringNoNew status for the task (must exist in the list)
prioritynumberNoPriority: 1 (urgent), 2 (high), 3 (normal), 4 (low)
dueDatenumberNoNew due date as a Unix timestamp in milliseconds
dueDateTimebooleanNoWhether the due date includes a time of day
startDatenumberNoNew start date as a Unix timestamp in milliseconds
startDateTimebooleanNoWhether the start date includes a time of day
timeEstimatenumberNoNew time estimate in milliseconds
pointsnumberNoNew sprint points value
parentstringNoParent task ID to move this task under (cannot be cleared)
archivedbooleanNoSet to true to archive the task, false to unarchive
assigneesToAddarrayNoUser IDs to add as assignees
assigneesToRemovearrayNoUser IDs to remove from assignees

Output

ParameterTypeDescription
taskjsonThe updated task

clickup_delete_task

Delete a task from ClickUp

Input

ParameterTypeRequiredDescription
taskIdstringYesID of the task to delete

Output

ParameterTypeDescription
idstringID of the deleted task
deletedbooleanWhether the task was deleted

clickup_get_tasks

List the tasks in a ClickUp list (100 tasks per page; increment page until an empty result to paginate)

Input

ParameterTypeRequiredDescription
listIdstringYesID of the list to fetch tasks from
pagenumberNoPage to fetch (starts at 0)
orderBystringNoOrder by field: id, created, updated, or due_date
reversebooleanNoReturn tasks in reverse order
subtasksbooleanNoInclude subtasks (excluded by default)
includeClosedbooleanNoInclude closed tasks (excluded by default)
includeMarkdownDescriptionbooleanNoReturn task descriptions in Markdown format
archivedbooleanNoReturn archived tasks
statusesarrayNoFilter tasks by status names
assigneesarrayNoFilter tasks by assignee user IDs
tagsarrayNoFilter tasks by tag names
dueDateGtnumberNoOnly tasks due after this Unix timestamp in milliseconds
dueDateLtnumberNoOnly tasks due before this Unix timestamp in milliseconds

Output

ParameterTypeDescription
tasksarrayTasks in the list

clickup_search_tasks

Search tasks across a ClickUp workspace with filters for lists, folders, spaces, statuses, assignees, tags, and due dates (100 tasks per page; increment page until an empty result to paginate)

Input

ParameterTypeRequiredDescription
workspaceIdstringYesID of the workspace (team) to search tasks in
pagenumberNoPage to fetch (starts at 0)
orderBystringNoOrder by field: id, created, updated, or due_date
reversebooleanNoReturn tasks in reverse order
subtasksbooleanNoInclude subtasks (excluded by default)
includeClosedbooleanNoInclude closed tasks (excluded by default)
includeMarkdownDescriptionbooleanNoReturn task descriptions in Markdown format
listIdsarrayNoFilter by list IDs
spaceIdsarrayNoFilter by space IDs
folderIdsarrayNoFilter by folder IDs
statusesarrayNoFilter tasks by status names
assigneesarrayNoFilter tasks by assignee user IDs
tagsarrayNoFilter tasks by tag names
dueDateGtnumberNoOnly tasks due after this Unix timestamp in milliseconds
dueDateLtnumberNoOnly tasks due before this Unix timestamp in milliseconds

Output

ParameterTypeDescription
tasksarrayTasks matching the filters

clickup_create_comment

Add a comment to a ClickUp task

Input

ParameterTypeRequiredDescription
taskIdstringYesID of the task to comment on
commentTextstringYesContent of the comment
assigneenumberNoUser ID to assign the comment to
notifyAllbooleanNoWhen true, comment notifications are sent to everyone, including the comment creator

Output

ParameterTypeDescription
idstringID of the created comment
histIdstringHistory ID of the created comment
datenumberCreation timestamp of the comment (Unix ms)

clickup_get_comments

Retrieve comments on a ClickUp task, newest first (25 per page; paginate with start and startId)

Input

ParameterTypeRequiredDescription
taskIdstringYesID of the task to fetch comments from
startnumberNoUnix timestamp (ms) of the reference comment for pagination (use the date of the last comment from the previous page, together with startId)
startIdstringNoID of the reference comment for pagination (use the id of the last comment from the previous page, together with start)

Output

ParameterTypeDescription
commentsarrayComments on the task, newest first

clickup_update_comment

Update the content, assignee, or resolved state of a ClickUp task comment

Input

ParameterTypeRequiredDescription
commentIdstringYesID of the comment to update
commentTextstringNoNew content for the comment
assigneenumberNoUser ID to assign the comment to
resolvedbooleanNoWhether the comment is resolved

Output

ParameterTypeDescription
idstringID of the updated comment
updatedbooleanWhether the comment was updated

clickup_delete_comment

Delete a comment from a ClickUp task

Input

ParameterTypeRequiredDescription
commentIdstringYesID of the comment to delete

Output

ParameterTypeDescription
idstringID of the deleted comment
deletedbooleanWhether the comment was deleted

clickup_upload_attachment

Upload a file to a ClickUp task as an attachment

Input

ParameterTypeRequiredDescription
taskIdstringYesID of the task to attach the file to
filefileYesFile to attach to the task

Output

ParameterTypeDescription
attachmentjsonThe created attachment
idstringAttachment ID
versionstringAttachment version
titlestringAttachment title
extensionstringFile extension
urlstringURL of the uploaded attachment
datenumberUpload timestamp (Unix ms)
thumbnailSmallstringSmall thumbnail URL
thumbnailLargestringLarge thumbnail URL
filesfile[]The uploaded attachment file

clickup_add_tag_to_task

Add an existing space tag to a ClickUp task

Input

ParameterTypeRequiredDescription
taskIdstringYesID of the task to tag
tagNamestringYesName of the tag to add (must exist in the space)

Output

ParameterTypeDescription
taskIdstringID of the tagged task
tagNamestringName of the tag that was added

clickup_remove_tag_from_task

Remove a tag from a ClickUp task

Input

ParameterTypeRequiredDescription
taskIdstringYesID of the task to remove the tag from
tagNamestringYesName of the tag to remove

Output

ParameterTypeDescription
taskIdstringID of the task
tagNamestringName of the tag that was removed

clickup_get_space_tags

List the task tags available in a ClickUp space

Input

ParameterTypeRequiredDescription
spaceIdstringYesID of the space to list tags from

Output

ParameterTypeDescription
tagsarrayTags available in the space

clickup_get_task_members

List the workspace members who have explicit access to a ClickUp task

Input

ParameterTypeRequiredDescription
taskIdstringYesID of the task to list members for

Output

ParameterTypeDescription
membersarrayMembers with explicit access to the task

clickup_get_list_members

List the workspace members who have explicit access to a ClickUp list

Input

ParameterTypeRequiredDescription
listIdstringYesID of the list to list members for

Output

ParameterTypeDescription
membersarrayMembers with explicit access to the list

clickup_get_custom_fields

List the custom fields accessible in a ClickUp list

Input

ParameterTypeRequiredDescription
listIdstringYesID of the list to fetch custom fields from

Output

ParameterTypeDescription
fieldsarrayCustom fields accessible in the list
idstringCustom field ID
namestringCustom field name
typestringCustom field type (e.g. text, number, drop_down)
typeConfigjsonType-specific configuration (e.g. dropdown options)
dateCreatedstringCreation timestamp (Unix ms)
hideFromGuestsbooleanWhether the field is hidden from guests

clickup_get_workspaces

List the ClickUp workspaces (teams) available to the connected account

Input

ParameterTypeRequiredDescription

Output

ParameterTypeDescription
workspacesarrayWorkspaces available to the connected account
idstringWorkspace ID
namestringWorkspace name
colorstringWorkspace color
avatarstringWorkspace avatar URL

clickup_get_spaces

List the spaces in a ClickUp workspace

Input

ParameterTypeRequiredDescription
workspaceIdstringYesID of the workspace (team) to list spaces from
archivedbooleanNoReturn archived spaces

Output

ParameterTypeDescription
spacesarraySpaces in the workspace
idstringSpace ID
namestringSpace name
privatebooleanWhether the space is private
archivedbooleanWhether the space is archived
statusesarrayTask statuses available in the space
statusstringStatus name
colorstringStatus color
typestringStatus type

clickup_get_folders

List the folders in a ClickUp space

Input

ParameterTypeRequiredDescription
spaceIdstringYesID of the space to list folders from
archivedbooleanNoReturn archived folders

Output

ParameterTypeDescription
foldersarrayFolders in the space

clickup_get_lists

List the lists in a ClickUp folder, or the folderless lists in a space when a space ID is provided instead

Input

ParameterTypeRequiredDescription
folderIdstringNoID of the folder to list lists from (provide this or spaceId; folderId takes precedence when both are set)
spaceIdstringNoID of the space to list folderless lists from (provide this or folderId)
archivedbooleanNoReturn archived lists

Output

ParameterTypeDescription
listsarrayLists in the folder or space

clickup_create_folder

Create a new folder in a ClickUp space

Input

ParameterTypeRequiredDescription
spaceIdstringYesID of the space to create the folder in
namestringYesName of the folder

Output

ParameterTypeDescription
folderjsonThe created folder

clickup_create_list

Create a new list in a ClickUp folder, or a folderless list in a space when a space ID is provided instead

Input

ParameterTypeRequiredDescription
folderIdstringNoID of the folder to create the list in (provide this or spaceId; folderId takes precedence when both are set)
spaceIdstringNoID of the space to create a folderless list in (provide this or folderId)
namestringYesName of the list
contentstringNoPlain text description of the list
markdownContentstringNoMarkdown description of the list (use instead of content)

Output

ParameterTypeDescription
listjsonThe created list

clickup_set_custom_field_value

Set the value of a custom field on a ClickUp task (the value shape depends on the field type)

Input

ParameterTypeRequiredDescription
taskIdstringYesID of the task to set the custom field on
fieldIdstringYesUUID of the custom field (find it with the Get Custom Fields or Get Task operations)
valuejsonYesValue to set. The shape depends on the field type: text/number fields take a plain value, label fields take an array of option UUIDs, dropdown fields take an option UUID

Output

ParameterTypeDescription
taskIdstringID of the updated task
fieldIdstringID of the custom field that was set

clickup_remove_custom_field_value

Remove the value of a custom field from a ClickUp task (does not delete the field itself)

Input

ParameterTypeRequiredDescription
taskIdstringYesID of the task to remove the custom field value from
fieldIdstringYesUUID of the custom field to clear

Output

ParameterTypeDescription
taskIdstringID of the updated task
fieldIdstringID of the custom field that was cleared

clickup_create_checklist

Add a new checklist to a ClickUp task

Input

ParameterTypeRequiredDescription
taskIdstringYesID of the task to add the checklist to
namestringYesName of the checklist

Output

ParameterTypeDescription
checklistjsonThe created checklist

clickup_update_checklist

Rename or reorder a checklist on a ClickUp task

Input

ParameterTypeRequiredDescription
checklistIdstringYesUUID of the checklist to update
namestringNoNew name for the checklist
positionnumberNoNew position of the checklist on the task (0 places it first)

Output

ParameterTypeDescription
idstringID of the updated checklist
updatedbooleanWhether the checklist was updated

clickup_delete_checklist

Delete a checklist from a ClickUp task

Input

ParameterTypeRequiredDescription
checklistIdstringYesUUID of the checklist to delete

Output

ParameterTypeDescription
idstringID of the deleted checklist
deletedbooleanWhether the checklist was deleted

clickup_create_checklist_item

Add an item to a checklist on a ClickUp task

Input

ParameterTypeRequiredDescription
checklistIdstringYesUUID of the checklist to add the item to
namestringYesName of the checklist item
assigneenumberNoUser ID to assign the item to

Output

ParameterTypeDescription
checklistjsonThe updated checklist including its items

clickup_update_checklist_item

Update a checklist item on a ClickUp task — rename, assign, resolve, or nest it

Input

ParameterTypeRequiredDescription
checklistIdstringYesUUID of the checklist containing the item
checklistItemIdstringYesUUID of the checklist item to update
namestringNoNew name for the checklist item
assigneenumberNoUser ID to assign the item to
resolvedbooleanNoWhether the item is resolved
parentstringNoUUID of another checklist item to nest this item under

Output

ParameterTypeDescription
checklistjsonThe updated checklist including its items

clickup_delete_checklist_item

Delete an item from a checklist on a ClickUp task

Input

ParameterTypeRequiredDescription
checklistIdstringYesUUID of the checklist containing the item
checklistItemIdstringYesUUID of the checklist item to delete

Output

ParameterTypeDescription
idstringID of the deleted checklist item
deletedbooleanWhether the item was deleted

clickup_get_time_entries

List time entries in a ClickUp workspace within a date range (defaults to the last 30 days for the authenticated user)

Input

ParameterTypeRequiredDescription
workspaceIdstringYesID of the workspace (team) to list time entries from
startDatenumberNoStart of the date range as a Unix timestamp in milliseconds
endDatenumberNoEnd of the date range as a Unix timestamp in milliseconds
assigneestringNoFilter by user IDs, comma-separated (requires workspace owner/admin to view others)
taskIdstringNoOnly entries for this task (use at most one location filter)
listIdstringNoOnly entries in this list (use at most one location filter)
folderIdstringNoOnly entries in this folder (use at most one location filter)
spaceIdstringNoOnly entries in this space (use at most one location filter)
includeTaskTagsbooleanNoInclude task tags in the response
includeLocationNamesbooleanNoInclude list, folder, and space names in the response

Output

ParameterTypeDescription
timeEntriesarrayTime entries in the date range

clickup_create_time_entry

Create a manual time entry in a ClickUp workspace, optionally linked to a task

Input

ParameterTypeRequiredDescription
workspaceIdstringYesID of the workspace (team) to create the entry in
startnumberYesStart of the entry as a Unix timestamp in milliseconds
durationnumberYesDuration of the entry in milliseconds
descriptionstringNoDescription of the time entry
billablebooleanNoWhether the entry is billable
taskIdstringNoTask ID to associate the entry with
assigneenumberNoUser ID to create the entry for (workspace owners/admins only)

Output

ParameterTypeDescription
timeEntryjsonThe created time entry

clickup_update_time_entry

Update a time entry in a ClickUp workspace — description, start/end times, task, or billable state

Input

ParameterTypeRequiredDescription
workspaceIdstringYesID of the workspace (team) the entry belongs to
timerIdstringYesID of the time entry to update
descriptionstringNoNew description for the entry
startnumberNoNew start (Unix ms); when provided, end must also be provided
endnumberNoNew end (Unix ms); when provided, start must also be provided
durationnumberNoNew duration in milliseconds
taskIdstringNoTask ID to associate the entry with
billablebooleanNoWhether the entry is billable

Output

ParameterTypeDescription
idstringID of the updated time entry
updatedbooleanWhether the entry was updated

clickup_delete_time_entry

Delete a time entry from a ClickUp workspace

Input

ParameterTypeRequiredDescription
workspaceIdstringYesID of the workspace (team) the entry belongs to
timerIdstringYesID of the time entry to delete

Output

ParameterTypeDescription
timeEntryjsonThe deleted time entry

clickup_start_timer

Start a timer for the authenticated user in a ClickUp workspace

Input

ParameterTypeRequiredDescription
workspaceIdstringYesID of the workspace (team) to start the timer in
taskIdstringNoTask ID to associate the timer with
descriptionstringNoDescription of the time entry
billablebooleanNoWhether the entry is billable
tagsarrayNoTime entry tag names to apply

Output

ParameterTypeDescription
timeEntryjsonThe started time entry (duration is negative while running)

clickup_stop_timer

Stop the authenticated user's currently running timer in a ClickUp workspace

Input

ParameterTypeRequiredDescription
workspaceIdstringYesID of the workspace (team) the timer is running in

Output

ParameterTypeDescription
timeEntryjsonThe stopped time entry

clickup_get_running_timer

Get the currently running time entry in a ClickUp workspace (null when no timer is running)

Input

ParameterTypeRequiredDescription
workspaceIdstringYesID of the workspace (team) to check
assigneenumberNoUser ID to check instead of the authenticated user (owners/admins only)

Output

ParameterTypeDescription
timeEntryjsonThe running time entry (duration is negative while running); null when no timer is running

Triggers

A Trigger is a block that starts a workflow when an event happens in this service.

ClickUp Folder Created

Trigger workflow when a folder is created in ClickUp

Output

ParameterTypeDescription
eventTypestringThe ClickUp event name (e.g. taskCreated)
historyItemsjsonHistory items describing what changed (id, type, date, source, user, before, after)
payloadjsonFull raw ClickUp webhook payload
folderIdstringID of the affected folder

ClickUp Folder Deleted

Trigger workflow when a folder is deleted in ClickUp

Output

ParameterTypeDescription
eventTypestringThe ClickUp event name (e.g. taskCreated)
historyItemsjsonHistory items describing what changed (id, type, date, source, user, before, after)
payloadjsonFull raw ClickUp webhook payload
folderIdstringID of the affected folder

ClickUp Folder Updated

Trigger workflow when a folder is updated in ClickUp

Output

ParameterTypeDescription
eventTypestringThe ClickUp event name (e.g. taskCreated)
historyItemsjsonHistory items describing what changed (id, type, date, source, user, before, after)
payloadjsonFull raw ClickUp webhook payload
folderIdstringID of the affected folder

ClickUp Goal Created

Trigger workflow when a goal is created in ClickUp

Output

ParameterTypeDescription
eventTypestringThe ClickUp event name (e.g. taskCreated)
historyItemsjsonHistory items describing what changed (id, type, date, source, user, before, after)
payloadjsonFull raw ClickUp webhook payload

ClickUp Goal Deleted

Trigger workflow when a goal is deleted in ClickUp

Output

ParameterTypeDescription
eventTypestringThe ClickUp event name (e.g. taskCreated)
historyItemsjsonHistory items describing what changed (id, type, date, source, user, before, after)
payloadjsonFull raw ClickUp webhook payload

ClickUp Goal Updated

Trigger workflow when a goal is updated in ClickUp

Output

ParameterTypeDescription
eventTypestringThe ClickUp event name (e.g. taskCreated)
historyItemsjsonHistory items describing what changed (id, type, date, source, user, before, after)
payloadjsonFull raw ClickUp webhook payload

ClickUp Key Result Created

Trigger workflow when a key result is created in ClickUp

Output

ParameterTypeDescription
eventTypestringThe ClickUp event name (e.g. taskCreated)
historyItemsjsonHistory items describing what changed (id, type, date, source, user, before, after)
payloadjsonFull raw ClickUp webhook payload

ClickUp Key Result Deleted

Trigger workflow when a key result is deleted in ClickUp

Output

ParameterTypeDescription
eventTypestringThe ClickUp event name (e.g. taskCreated)
historyItemsjsonHistory items describing what changed (id, type, date, source, user, before, after)
payloadjsonFull raw ClickUp webhook payload

ClickUp Key Result Updated

Trigger workflow when a key result is updated in ClickUp

Output

ParameterTypeDescription
eventTypestringThe ClickUp event name (e.g. taskCreated)
historyItemsjsonHistory items describing what changed (id, type, date, source, user, before, after)
payloadjsonFull raw ClickUp webhook payload

ClickUp List Created

Trigger workflow when a list is created in ClickUp

Output

ParameterTypeDescription
eventTypestringThe ClickUp event name (e.g. taskCreated)
historyItemsjsonHistory items describing what changed (id, type, date, source, user, before, after)
payloadjsonFull raw ClickUp webhook payload
listIdstringID of the affected list

ClickUp List Deleted

Trigger workflow when a list is deleted in ClickUp

Output

ParameterTypeDescription
eventTypestringThe ClickUp event name (e.g. taskCreated)
historyItemsjsonHistory items describing what changed (id, type, date, source, user, before, after)
payloadjsonFull raw ClickUp webhook payload
listIdstringID of the affected list

ClickUp List Updated

Trigger workflow when a list is updated in ClickUp

Output

ParameterTypeDescription
eventTypestringThe ClickUp event name (e.g. taskCreated)
historyItemsjsonHistory items describing what changed (id, type, date, source, user, before, after)
payloadjsonFull raw ClickUp webhook payload
listIdstringID of the affected list

ClickUp Space Created

Trigger workflow when a space is created in ClickUp

Output

ParameterTypeDescription
eventTypestringThe ClickUp event name (e.g. taskCreated)
historyItemsjsonHistory items describing what changed (id, type, date, source, user, before, after)
payloadjsonFull raw ClickUp webhook payload
spaceIdstringID of the affected space

ClickUp Space Deleted

Trigger workflow when a space is deleted in ClickUp

Output

ParameterTypeDescription
eventTypestringThe ClickUp event name (e.g. taskCreated)
historyItemsjsonHistory items describing what changed (id, type, date, source, user, before, after)
payloadjsonFull raw ClickUp webhook payload
spaceIdstringID of the affected space

ClickUp Space Updated

Trigger workflow when a space is updated in ClickUp

Output

ParameterTypeDescription
eventTypestringThe ClickUp event name (e.g. taskCreated)
historyItemsjsonHistory items describing what changed (id, type, date, source, user, before, after)
payloadjsonFull raw ClickUp webhook payload
spaceIdstringID of the affected space

ClickUp Task Assignee Updated

Trigger workflow when the assignees of a task change in ClickUp

Output

ParameterTypeDescription
eventTypestringThe ClickUp event name (e.g. taskCreated)
historyItemsjsonHistory items describing what changed (id, type, date, source, user, before, after)
payloadjsonFull raw ClickUp webhook payload
taskIdstringID of the affected task

ClickUp Task Comment Posted

Trigger workflow when a comment is posted on a task in ClickUp

Output

ParameterTypeDescription
eventTypestringThe ClickUp event name (e.g. taskCreated)
historyItemsjsonHistory items describing what changed (id, type, date, source, user, before, after)
payloadjsonFull raw ClickUp webhook payload
taskIdstringID of the affected task

ClickUp Task Comment Updated

Trigger workflow when a task comment is updated in ClickUp

Output

ParameterTypeDescription
eventTypestringThe ClickUp event name (e.g. taskCreated)
historyItemsjsonHistory items describing what changed (id, type, date, source, user, before, after)
payloadjsonFull raw ClickUp webhook payload
taskIdstringID of the affected task

ClickUp Task Created

Trigger workflow when a task is created in ClickUp

Output

ParameterTypeDescription
eventTypestringThe ClickUp event name (e.g. taskCreated)
historyItemsjsonHistory items describing what changed (id, type, date, source, user, before, after)
payloadjsonFull raw ClickUp webhook payload
taskIdstringID of the affected task

ClickUp Task Deleted

Trigger workflow when a task is deleted in ClickUp

Output

ParameterTypeDescription
eventTypestringThe ClickUp event name (e.g. taskCreated)
historyItemsjsonHistory items describing what changed (id, type, date, source, user, before, after)
payloadjsonFull raw ClickUp webhook payload
taskIdstringID of the affected task

ClickUp Task Due Date Updated

Trigger workflow when the due date of a task changes in ClickUp

Output

ParameterTypeDescription
eventTypestringThe ClickUp event name (e.g. taskCreated)
historyItemsjsonHistory items describing what changed (id, type, date, source, user, before, after)
payloadjsonFull raw ClickUp webhook payload
taskIdstringID of the affected task

ClickUp Task Moved

Trigger workflow when a task is moved to a different list in ClickUp

Output

ParameterTypeDescription
eventTypestringThe ClickUp event name (e.g. taskCreated)
historyItemsjsonHistory items describing what changed (id, type, date, source, user, before, after)
payloadjsonFull raw ClickUp webhook payload
taskIdstringID of the affected task

ClickUp Task Priority Updated

Trigger workflow when the priority of a task changes in ClickUp

Output

ParameterTypeDescription
eventTypestringThe ClickUp event name (e.g. taskCreated)
historyItemsjsonHistory items describing what changed (id, type, date, source, user, before, after)
payloadjsonFull raw ClickUp webhook payload
taskIdstringID of the affected task

ClickUp Task Status Updated

Trigger workflow when the status of a task changes in ClickUp

Output

ParameterTypeDescription
eventTypestringThe ClickUp event name (e.g. taskCreated)
historyItemsjsonHistory items describing what changed (id, type, date, source, user, before, after)
payloadjsonFull raw ClickUp webhook payload
taskIdstringID of the affected task

ClickUp Task Tag Updated

Trigger workflow when the tags of a task change in ClickUp

Output

ParameterTypeDescription
eventTypestringThe ClickUp event name (e.g. taskCreated)
historyItemsjsonHistory items describing what changed (id, type, date, source, user, before, after)
payloadjsonFull raw ClickUp webhook payload
taskIdstringID of the affected task

ClickUp Task Time Estimate Updated

Trigger workflow when the time estimate of a task changes in ClickUp

Output

ParameterTypeDescription
eventTypestringThe ClickUp event name (e.g. taskCreated)
historyItemsjsonHistory items describing what changed (id, type, date, source, user, before, after)
payloadjsonFull raw ClickUp webhook payload
taskIdstringID of the affected task

ClickUp Task Time Tracked Updated

Trigger workflow when the tracked time of a task changes in ClickUp

Output

ParameterTypeDescription
eventTypestringThe ClickUp event name (e.g. taskCreated)
historyItemsjsonHistory items describing what changed (id, type, date, source, user, before, after)
payloadjsonFull raw ClickUp webhook payload
taskIdstringID of the affected task

ClickUp Task Updated

Trigger workflow when a task is updated in ClickUp

Output

ParameterTypeDescription
eventTypestringThe ClickUp event name (e.g. taskCreated)
historyItemsjsonHistory items describing what changed (id, type, date, source, user, before, after)
payloadjsonFull raw ClickUp webhook payload
taskIdstringID of the affected task

ClickUp Webhook

Trigger workflow on any ClickUp event (subscribes to all events)

Output

ParameterTypeDescription
eventTypestringThe ClickUp event name (e.g. taskCreated)
historyItemsjsonHistory items describing what changed (id, type, date, source, user, before, after)
payloadjsonFull raw ClickUp webhook payload
taskIdstringID of the affected task (task events only)
listIdstringID of the affected list (list events only)
folderIdstringID of the affected folder (folder events only)
spaceIdstringID of the affected space (space events only)

On this page

Usage Instructions
Actions
clickup_create_task
Input
Output
clickup_get_task
Input
Output
clickup_update_task
Input
Output
clickup_delete_task
Input
Output
clickup_get_tasks
Input
Output
clickup_search_tasks
Input
Output
clickup_create_comment
Input
Output
clickup_get_comments
Input
Output
clickup_update_comment
Input
Output
clickup_delete_comment
Input
Output
clickup_upload_attachment
Input
Output
clickup_add_tag_to_task
Input
Output
clickup_remove_tag_from_task
Input
Output
clickup_get_space_tags
Input
Output
clickup_get_task_members
Input
Output
clickup_get_list_members
Input
Output
clickup_get_custom_fields
Input
Output
clickup_get_workspaces
Input
Output
clickup_get_spaces
Input
Output
clickup_get_folders
Input
Output
clickup_get_lists
Input
Output
clickup_create_folder
Input
Output
clickup_create_list
Input
Output
clickup_set_custom_field_value
Input
Output
clickup_remove_custom_field_value
Input
Output
clickup_create_checklist
Input
Output
clickup_update_checklist
Input
Output
clickup_delete_checklist
Input
Output
clickup_create_checklist_item
Input
Output
clickup_update_checklist_item
Input
Output
clickup_delete_checklist_item
Input
Output
clickup_get_time_entries
Input
Output
clickup_create_time_entry
Input
Output
clickup_update_time_entry
Input
Output
clickup_delete_time_entry
Input
Output
clickup_start_timer
Input
Output
clickup_stop_timer
Input
Output
clickup_get_running_timer
Input
Output
Triggers
ClickUp Folder Created
Output
ClickUp Folder Deleted
Output
ClickUp Folder Updated
Output
ClickUp Goal Created
Output
ClickUp Goal Deleted
Output
ClickUp Goal Updated
Output
ClickUp Key Result Created
Output
ClickUp Key Result Deleted
Output
ClickUp Key Result Updated
Output
ClickUp List Created
Output
ClickUp List Deleted
Output
ClickUp List Updated
Output
ClickUp Space Created
Output
ClickUp Space Deleted
Output
ClickUp Space Updated
Output
ClickUp Task Assignee Updated
Output
ClickUp Task Comment Posted
Output
ClickUp Task Comment Updated
Output
ClickUp Task Created
Output
ClickUp Task Deleted
Output
ClickUp Task Due Date Updated
Output
ClickUp Task Moved
Output
ClickUp Task Priority Updated
Output
ClickUp Task Status Updated
Output
ClickUp Task Tag Updated
Output
ClickUp Task Time Estimate Updated
Output
ClickUp Task Time Tracked Updated
Output
ClickUp Task Updated
Output
ClickUp Webhook
Output