ClickUp
No catalog description yet.
Authentication
| Method | Kind | Status | Details |
|---|---|---|---|
| OAuth 2.0 | oauth2 | available | — |
Call a tool
import { createClient } from "@open-connector/sdk";const oc = createClient({ baseUrl: "https://api.openconnector.dev", apiKey: process.env.OPEN_CONNECTOR_API_KEY!,});const result = await oc.executeTool({ slug: "CLICKUP_ADD_DEPENDENCY", connectedAccountId: "conn_...", arguments: { /* match this tool's input schema */ },});import Composio from "@composio/client";const composio = new Composio({ baseURL: "https://api.openconnector.dev/composio", apiKey: process.env.OPEN_CONNECTOR_API_KEY!,});const result = await composio.tools.execute("CLICKUP_ADD_DEPENDENCY", { connected_account_id: "conn_...", arguments: { /* match this tool's input schema */ },});oc tools execute CLICKUP_ADD_DEPENDENCY --data '{ }'Tool catalog
Available tools
136 callable operations
Add DependencyCLICKUP_ADD_DEPENDENCYSet a task as waiting on or blocking another task.Connection
Set a task as waiting on or blocking another task.
Authentication
Connected account requiredTags
Add Guest To FolderCLICKUP_ADD_GUEST_TO_FOLDERShare a Folder with a guest. \ \ ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*Connection
Share a Folder with a guest. \ \ ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*
Authentication
Connected account requiredTags
Add Guest To ListCLICKUP_ADD_GUEST_TO_LISTShare a List with a guest. \ \ ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*Connection
Share a List with a guest. \ \ ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*
Authentication
Connected account requiredTags
Add Guest To TaskCLICKUP_ADD_GUEST_TO_TASKShare a task with a guest. \ \ ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*Connection
Share a task with a guest. \ \ ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*
Authentication
Connected account requiredTags
Add Tag To TaskCLICKUP_ADD_TAG_TO_TASKAdd a Tag to a task.Connection
Add a Tag to a task.
Authentication
Connected account requiredTags
Add Task LinkCLICKUP_ADD_TASK_LINKThis is the equivalent of the feature _Task Links_ in the right-hand sidebar of a Task. It allows you to link two tasks together. General links or links to other objects than tasks are not supported.Connection
This is the equivalent of the feature _Task Links_ in the right-hand sidebar of a Task. It allows you to link two tasks together. General links or links to other objects than tasks are not supported.
Authentication
Connected account requiredTags
Add Task To ListCLICKUP_ADD_TASK_TO_LISTAdd a task to an additional List. \ \ ***Note:** This endpoint requires the [Tasks in Multiple List ClickApp](https://help.clickup.com/hc/en-us/articles/6309958824727-Tasks-in-Multiple-Lists) to be enabled.*Connection
Add a task to an additional List. \ \ ***Note:** This endpoint requires the [Tasks in Multiple List ClickApp](https://help.clickup.com/hc/en-us/articles/6309958824727-Tasks-in-Multiple-Lists) to be enabled.*
Authentication
Connected account requiredTags
Add tags from time entriesCLICKUP_ADDTAGSFROMTIMEENTRIESAdd a label to a time entry.Connection
Add a label to a time entry.
Authentication
Connected account requiredTags
Change tag names from time entriesCLICKUP_CHANGETAGNAMESFROMTIMEENTRIESRename an time entry label.Connection
Rename an time entry label.
Authentication
Connected account requiredTags
Create Chat View CommentCLICKUP_CREATE_CHAT_VIEW_COMMENTAdd a new comment to a Chat view.Connection
Add a new comment to a Chat view.
Authentication
Connected account requiredTags
Create ChecklistCLICKUP_CREATE_CHECKLISTAdd a new checklist to a task.Connection
Add a new checklist to a task.
Authentication
Connected account requiredTags
Create Checklist ItemCLICKUP_CREATE_CHECKLIST_ITEMAdd a line item to a task checklist.Connection
Add a line item to a task checklist.
Authentication
Connected account requiredTags
Create FolderCLICKUP_CREATE_FOLDERAdd a new Folder to a Space. You can optionally create the Folder as a subfolder within an existing Folder by providing `parent_folder_id` in the request body. Subfolder support must be enabled for the Workspace.Connection
Add a new Folder to a Space. You can optionally create the Folder as a subfolder within an existing Folder by providing `parent_folder_id` in the request body. Subfolder support must be enabled for the Workspace.
Authentication
Connected account requiredTags
Create Folder from templateCLICKUP_CREATE_FOLDER_FROM_TEMPLATECreate a new Folder using a Folder template within a Space. This endpoint allows you to create a folder with all its nested assets (lists, tasks, etc.) from a predefined template available in your Workspace. Publicly shared templates must be [added to your Workspace](https://help.clickup.com/hc/en-us/articles/6326023965591-Add-a-template-to-your-library) before you can use them with the public API. You can optionally create the Folder as a subfolder within an existing Folder by providing `parent_folder_id` in the request body. Subfolder support must be enabled for the Workspace. This request can be run asynchronously or synchronously via the `return_immediately` parameter.Connection
Create a new Folder using a Folder template within a Space. This endpoint allows you to create a folder with all its nested assets (lists, tasks, etc.) from a predefined template available in your Workspace. Publicly shared templates must be [added to your Workspace](https://help.clickup.com/hc/en-us/articles/6326023965591-Add-a-template-to-your-library) before you can use them with the public API. You can optionally create the Folder as a subfolder within an existing Folder by providing `parent_folder_id` in the request body. Subfolder support must be enabled for the Workspace. This request can be run asynchronously or synchronously via the `return_immediately` parameter.
Authentication
Connected account requiredTags
Create List From Template in FolderCLICKUP_CREATE_FOLDER_LIST_FROM_TEMPLATECreate a new list using a list template in a Folder. Publicly shared templates must be [added to your Workspace](https://help.clickup.com/hc/en-us/articles/6326023965591-Add-a-template-to-your-library) before you can use them with the public API. This request runs synchronously by default with `return_immediately=true`. The request returns the future List ID immediatly, but the List may not be created when the response is sent. Small templates can be applied synchronously, which guarantees that all sub objects are created. In case of a timeout on synchronous requests, the objects from the template will continue to be created past the timeout.Connection
Create a new list using a list template in a Folder. Publicly shared templates must be [added to your Workspace](https://help.clickup.com/hc/en-us/articles/6326023965591-Add-a-template-to-your-library) before you can use them with the public API. This request runs synchronously by default with `return_immediately=true`. The request returns the future List ID immediatly, but the List may not be created when the response is sent. Small templates can be applied synchronously, which guarantees that all sub objects are created. In case of a timeout on synchronous requests, the objects from the template will continue to be created past the timeout.
Authentication
Connected account requiredTags
Create Folder ViewCLICKUP_CREATE_FOLDER_VIEWAdd a List, Board, Calendar, Table, Timeline, Workload, Activity, Map, Chat, or Gantt view to a Folder.Connection
Add a List, Board, Calendar, Table, Timeline, Workload, Activity, Map, Chat, or Gantt view to a Folder.
Authentication
Connected account requiredTags
Create Folderless ListCLICKUP_CREATE_FOLDERLESS_LISTAdd a new List in a Space.Connection
Add a new List in a Space.
Authentication
Connected account requiredTags
Create GoalCLICKUP_CREATE_GOALAdd a new Goal to a Workspace.Connection
Add a new Goal to a Workspace.
Authentication
Connected account requiredTags
Create Key ResultCLICKUP_CREATE_KEY_RESULTAdd a Target to a Goal.Connection
Add a Target to a Goal.
Authentication
Connected account requiredTags
Create ListCLICKUP_CREATE_LISTAdd a new List to a Folder.Connection
Add a new List to a Folder.
Authentication
Connected account requiredTags
Create List CommentCLICKUP_CREATE_LIST_COMMENTAdd a comment to a List.Connection
Add a comment to a List.
Authentication
Connected account requiredTags
Create List ViewCLICKUP_CREATE_LIST_VIEWAdd a List, Board, Calendar, Table, Timeline, Workload, Activity, Map, Chat, or Gantt view to a List.Connection
Add a List, Board, Calendar, Table, Timeline, Workload, Activity, Map, Chat, or Gantt view to a List.
Authentication
Connected account requiredTags
Create SpaceCLICKUP_CREATE_SPACEAdd a new Space to a Workspace.Connection
Add a new Space to a Workspace.
Authentication
Connected account requiredTags
Create List From Template in SpaceCLICKUP_CREATE_SPACE_LIST_FROM_TEMPLATECreate a new List using a List template within a Space. Publicly shared templates must be [added to your Workspace](https://help.clickup.com/hc/en-us/articles/6326023965591-Add-a-template-to-your-library) before you can use them with the public API. This request can be run asynchronously or synchronously via the `return_immediately` parameter.Connection
Create a new List using a List template within a Space. Publicly shared templates must be [added to your Workspace](https://help.clickup.com/hc/en-us/articles/6326023965591-Add-a-template-to-your-library) before you can use them with the public API. This request can be run asynchronously or synchronously via the `return_immediately` parameter.
Authentication
Connected account requiredTags
Create Space TagCLICKUP_CREATE_SPACE_TAGAdd a new task Tag to a Space.Connection
Add a new task Tag to a Space.
Authentication
Connected account requiredTags
Create Space ViewCLICKUP_CREATE_SPACE_VIEWAdd a List, Board, Calendar, Table, Timeline, Workload, Activity, Map, Chat, or Gantt view to a Space.Connection
Add a List, Board, Calendar, Table, Timeline, Workload, Activity, Map, Chat, or Gantt view to a Space.
Authentication
Connected account requiredTags
Create TaskCLICKUP_CREATE_TASKCreate a new task.\ \ Custom Field values in the request body are only saved when the field is applicable to the task's `custom_item_id`. Use [Get Custom Fields](ref:getaccessiblecustomfields) and each field's `applied_objects` to determine applicability before creating the task.Connection
Create a new task.\ \ Custom Field values in the request body are only saved when the field is applicable to the task's `custom_item_id`. Use [Get Custom Fields](ref:getaccessiblecustomfields) and each field's `applied_objects` to determine applicability before creating the task.
Authentication
Connected account requiredTags
Create Task CommentCLICKUP_CREATE_TASK_COMMENTAdd a new comment to a task.Connection
Add a new comment to a task.
Authentication
Connected account requiredTags
Create Task From TemplateCLICKUP_CREATE_TASK_FROM_TEMPLATECreate a new task using a task template defined in your workspace. Publicly shared templates must be [added to your Workspace](https://help.clickup.com/hc/en-us/articles/6326023965591-Add-a-template-to-your-library) before you can use them with the public API.Connection
Create a new task using a task template defined in your workspace. Publicly shared templates must be [added to your Workspace](https://help.clickup.com/hc/en-us/articles/6326023965591-Add-a-template-to-your-library) before you can use them with the public API.
Authentication
Connected account requiredTags
Create Workspace (Everything level) ViewCLICKUP_CREATE_TEAM_VIEWAdd a List, Board, Calendar, Table, Timeline, Workload, Activity, Map, Chat, or Gantt view at the Everything Level of a Workspace.Connection
Add a List, Board, Calendar, Table, Timeline, Workload, Activity, Map, Chat, or Gantt view at the Everything Level of a Workspace.
Authentication
Connected account requiredTags
Create Threaded CommentCLICKUP_CREATE_THREADED_COMMENTCreate a threaded comment.Connection
Create a threaded comment.
Authentication
Connected account requiredTags
Create GroupCLICKUP_CREATE_USER_GROUPThis endpoint creates a [User Group](https://docs.clickup.com/en/articles/4010016-teams-how-to-create-user-groups) within a Workspace.\ \ User Groups are used to organize and manage users within a Workspace.\ \ In the API documentation, `team_id` refers to the Workspace ID, and `group_id` refers to the User Group ID.\ \ **Note:** Adding a guest with view-only permissions to a Team automatically converts them to a paid guest.\ \ If no paid guest seats are available, an additional member seat will be added, increasing the number of paid guest seats.\ \ This change incurs a prorated charge based on the billing cycle.Connection
This endpoint creates a [User Group](https://docs.clickup.com/en/articles/4010016-teams-how-to-create-user-groups) within a Workspace.\ \ User Groups are used to organize and manage users within a Workspace.\ \ In the API documentation, `team_id` refers to the Workspace ID, and `group_id` refers to the User Group ID.\ \ **Note:** Adding a guest with view-only permissions to a Team automatically converts them to a paid guest.\ \ If no paid guest seats are available, an additional member seat will be added, increasing the number of paid guest seats.\ \ This change incurs a prorated charge based on the billing cycle.
Authentication
Connected account requiredTags
Create WebhookCLICKUP_CREATE_WEBHOOKSet up a webhook to monitor for events.<br> We do not have a dedicated IP address for webhooks. We use our domain name and dynamic addressing.Connection
Set up a webhook to monitor for events.<br> We do not have a dedicated IP address for webhooks. We use our domain name and dynamic addressing.
Authentication
Connected account requiredTags
Create a time entryCLICKUP_CREATEATIMEENTRYCreate a time entry. \ \ ***Note:** A time entry that has a negative duration means that timer is currently running for that user.*Connection
Create a time entry. \ \ ***Note:** A time entry that has a negative duration means that timer is currently running for that user.*
Authentication
Connected account requiredTags
Delete ChecklistCLICKUP_DELETE_CHECKLISTDelete a checklist from a task.Connection
Delete a checklist from a task.
Authentication
Connected account requiredTags
Delete Checklist ItemCLICKUP_DELETE_CHECKLIST_ITEMDelete a line item from a task checklist.Connection
Delete a line item from a task checklist.
Authentication
Connected account requiredTags
Delete CommentCLICKUP_DELETE_COMMENTDelete a task comment.Connection
Delete a task comment.
Authentication
Connected account requiredTags
Delete DependencyCLICKUP_DELETE_DEPENDENCYRemove the dependency relationship between two or more tasks.Connection
Remove the dependency relationship between two or more tasks.
Authentication
Connected account requiredTags
Delete FolderCLICKUP_DELETE_FOLDERDelete a Folder from your Workspace.Connection
Delete a Folder from your Workspace.
Authentication
Connected account requiredTags
Delete GoalCLICKUP_DELETE_GOALRemove a Goal from your Workspace.Connection
Remove a Goal from your Workspace.
Authentication
Connected account requiredTags
Delete Key ResultCLICKUP_DELETE_KEY_RESULTDelete a target from a Goal.Connection
Delete a target from a Goal.
Authentication
Connected account requiredTags
Delete ListCLICKUP_DELETE_LISTDelete a List from your Workspace.Connection
Delete a List from your Workspace.
Authentication
Connected account requiredTags
Delete SpaceCLICKUP_DELETE_SPACEDelete a Space from your Workspace.Connection
Delete a Space from your Workspace.
Authentication
Connected account requiredTags
Delete Space TagCLICKUP_DELETE_SPACE_TAGDelete a task Tag from a Space.Connection
Delete a task Tag from a Space.
Authentication
Connected account requiredTags
Delete TaskCLICKUP_DELETE_TASKDelete a task from your Workspace.Connection
Delete a task from your Workspace.
Authentication
Connected account requiredTags
Delete Task LinkCLICKUP_DELETE_TASK_LINKRemove the link between two tasks.Connection
Remove the link between two tasks.
Authentication
Connected account requiredTags
Delete GroupCLICKUP_DELETE_TEAMThis endpoint is used to remove a [User Group](https://docs.clickup.com/en/articles/4010016-teams-how-to-create-user-groups) from your Workspace.\ \ In our API documentation, `team_id` refers to the id of a Workspace, and `group_id` refers to the id of a user group.Connection
This endpoint is used to remove a [User Group](https://docs.clickup.com/en/articles/4010016-teams-how-to-create-user-groups) from your Workspace.\ \ In our API documentation, `team_id` refers to the id of a Workspace, and `group_id` refers to the id of a user group.
Authentication
Connected account requiredTags
Delete ViewCLICKUP_DELETE_VIEWDelete ViewConnection
Delete View
Authentication
Connected account requiredTags
Delete WebhookCLICKUP_DELETE_WEBHOOKDelete a webhook to stop monitoring the events and locations of the webhook.Connection
Delete a webhook to stop monitoring the events and locations of the webhook.
Authentication
Connected account requiredTags
Delete a time EntryCLICKUP_DELETEATIME_ENTRYDelete a time entry from a Workspace.Connection
Delete a time entry from a Workspace.
Authentication
Connected account requiredTags
Delete time trackedCLICKUP_DELETETIMETRACKED***Note:** This is a legacy time tracking endpoint. We recommend using the Time Tracking API endpoints to manage time entries.*Connection
***Note:** This is a legacy time tracking endpoint. We recommend using the Time Tracking API endpoints to manage time entries.*
Authentication
Connected account requiredTags
Edit ChecklistCLICKUP_EDIT_CHECKLISTRename a task checklist, or reorder a checklist so it appears above or below other checklists on a task.Connection
Rename a task checklist, or reorder a checklist so it appears above or below other checklists on a task.
Authentication
Connected account requiredTags
Edit Checklist ItemCLICKUP_EDIT_CHECKLIST_ITEMUpdate an individual line item in a task checklist. \ \ You can rename it, set the assignee, mark it as resolved, or nest it under another checklist item.Connection
Update an individual line item in a task checklist. \ \ You can rename it, set the assignee, mark it as resolved, or nest it under another checklist item.
Authentication
Connected account requiredTags
Edit Guest On WorkspaceCLICKUP_EDIT_GUEST_ON_WORKSPACEConfigure options for a guest. \ \ ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*Connection
Configure options for a guest. \ \ ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*
Authentication
Connected account requiredTags
Edit Key ResultCLICKUP_EDIT_KEY_RESULTUpdate a Target.Connection
Update a Target.
Authentication
Connected account requiredTags
Edit Space TagCLICKUP_EDIT_SPACE_TAGUpdate a task Tag.Connection
Update a task Tag.
Authentication
Connected account requiredTags
Edit User On WorkspaceCLICKUP_EDIT_USER_ON_WORKSPACEUpdate a user's name and role. \ \ ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*Connection
Update a user's name and role. \ \ ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*
Authentication
Connected account requiredTags
Edit time trackedCLICKUP_EDITTIMETRACKED***Note:** This is a legacy time tracking endpoint. We recommend using the Time Tracking API endpoints to manage time entries.*Connection
***Note:** This is a legacy time tracking endpoint. We recommend using the Time Tracking API endpoints to manage time entries.*
Authentication
Connected account requiredTags
Get Access TokenCLICKUP_GET_ACCESS_TOKENThese are the routes for authing the API and going through the [OAuth flow](doc:authentication).\ \ Applications utilizing a personal API token don't use this endpoint.\ \ ***Note:** OAuth tokens are not supported when using the [**Try It** feature](doc:trytheapi) of our Reference docs. You can't try this endpoint from your web browser.*Connection
These are the routes for authing the API and going through the [OAuth flow](doc:authentication).\ \ Applications utilizing a personal API token don't use this endpoint.\ \ ***Note:** OAuth tokens are not supported when using the [**Try It** feature](doc:trytheapi) of our Reference docs. You can't try this endpoint from your web browser.*
Authentication
Connected account requiredTags
Get List Custom FieldsCLICKUP_GET_ACCESSIBLE_CUSTOM_FIELDSView the Custom Fields you have access to in a specific List.\ \ Custom Fields scoped to specific custom task types include an `applied_objects` array on each field object. Each entry has `object_type` (`19` for custom task type) and `object_id` (the custom task type ID, matching `custom_item_id` on tasks). Use [Get Custom Task Types](ref:getcustomitems) to resolve IDs to names. Fields without task-type scoping omit `applied_objects`. Workspace-scoped Custom Fields are included when querying a List.Connection
View the Custom Fields you have access to in a specific List.\ \ Custom Fields scoped to specific custom task types include an `applied_objects` array on each field object. Each entry has `object_type` (`19` for custom task type) and `object_id` (the custom task type ID, matching `custom_item_id` on tasks). Use [Get Custom Task Types](ref:getcustomitems) to resolve IDs to names. Fields without task-type scoping omit `applied_objects`. Workspace-scoped Custom Fields are included when querying a List.
Authentication
Connected account requiredTags
Get Authorized WorkspacesCLICKUP_GET_AUTHORIZED_TEAMSView the Workspaces available to the authenticated user.Connection
View the Workspaces available to the authenticated user.
Authentication
Connected account requiredTags
Get Authorized UserCLICKUP_GET_AUTHORIZED_USERView the details of the authenticated user's ClickUp account.Connection
View the details of the authenticated user's ClickUp account.
Authentication
Connected account requiredTags
Get Bulk Tasks' Time in StatusCLICKUP_GET_BULK_TASKS_TIMEIN_STATUSView how long two or more tasks have been in each status. The Total time in Status ClickApp must first be enabled by the Workspace owner or an admin.Connection
View how long two or more tasks have been in each status. The Total time in Status ClickApp must first be enabled by the Workspace owner or an admin.
Authentication
Connected account requiredTags
Get Chat View CommentsCLICKUP_GET_CHAT_VIEW_COMMENTSView comments from a Chat view. \ \ If you do not include the `start` and `start_id` parameters, this endpoint will return the most recent 25 comments.\ \ Use the `start` and `start id` parameters of the oldest comment to retrieve the next 25 comments.Connection
View comments from a Chat view. \ \ If you do not include the `start` and `start_id` parameters, this endpoint will return the most recent 25 comments.\ \ Use the `start` and `start id` parameters of the oldest comment to retrieve the next 25 comments.
Authentication
Connected account requiredTags
Get Custom Task TypesCLICKUP_GET_CUSTOM_ITEMSView the custom task types available in a Workspace.Connection
View the custom task types available in a Workspace.
Authentication
Connected account requiredTags
Get Custom RolesCLICKUP_GET_CUSTOM_ROLESView the Custom Roles available in a Workspace.Connection
View the Custom Roles available in a Workspace.
Authentication
Connected account requiredTags
Get Filtered Team TasksCLICKUP_GET_FILTERED_TEAM_TASKSView the tasks that meet specific criteria from a Workspace. Responses are limited to 100 tasks per page. \ \ You can only view task information of tasks you can access. \ \ Each task's `custom_fields` array only includes Custom Fields applicable to that task's `custom_item_id`.\ \ Our Try It modal currently supports filtering by two or more Lists, Folders, or Spaces. To filter by a single List, Folder, or Space, we recommend using a free app like [Postman](https://www.postman.com/) to test our public API.Connection
View the tasks that meet specific criteria from a Workspace. Responses are limited to 100 tasks per page. \ \ You can only view task information of tasks you can access. \ \ Each task's `custom_fields` array only includes Custom Fields applicable to that task's `custom_item_id`.\ \ Our Try It modal currently supports filtering by two or more Lists, Folders, or Spaces. To filter by a single List, Folder, or Space, we recommend using a free app like [Postman](https://www.postman.com/) to test our public API.
Authentication
Connected account requiredTags
Get FolderCLICKUP_GET_FOLDERView the Lists within a Folder. If the Folder is a subfolder, the response includes a `parent_folder` field with the parent Folder ID. Use the `include_subfolders` query parameter to include a `folders` array with child subfolder IDs in the response.Connection
View the Lists within a Folder. If the Folder is a subfolder, the response includes a `parent_folder` field with the parent Folder ID. Use the `include_subfolders` query parameter to include a `folders` array with child subfolder IDs in the response.
Authentication
Connected account requiredTags
Get Folder Custom FieldsCLICKUP_GET_FOLDER_AVAILABLE_FIELDSView the Custom Fields you have access to in a Folder. Get Folder Custom Fields only returns Custom Fields created at the Folder level. Custom Fields created at the List level are not included.\ \ Custom Fields scoped to specific custom task types include an `applied_objects` array on each field object. Each entry has `object_type` (`19` for custom task type) and `object_id` (the custom task type ID, matching `custom_item_id` on tasks). Use [Get Custom Task Types](ref:getcustomitems) to resolve IDs to names. Fields without task-type scoping omit `applied_objects`. Workspace-scoped Custom Fields are included when querying a Folder.Connection
View the Custom Fields you have access to in a Folder. Get Folder Custom Fields only returns Custom Fields created at the Folder level. Custom Fields created at the List level are not included.\ \ Custom Fields scoped to specific custom task types include an `applied_objects` array on each field object. Each entry has `object_type` (`19` for custom task type) and `object_id` (the custom task type ID, matching `custom_item_id` on tasks). Use [Get Custom Task Types](ref:getcustomitems) to resolve IDs to names. Fields without task-type scoping omit `applied_objects`. Workspace-scoped Custom Fields are included when querying a Folder.
Authentication
Connected account requiredTags
Get Folder TemplatesCLICKUP_GET_FOLDER_TEMPLATESView the Folder templates available in a Workspace. Use this endpoint to retrieve Folder template IDs for use with the [Create Folder From Template](#tag/Folders/operation/CreateFolderFromTemplate) endpoint. Template IDs are returned with a `t-` prefix (e.g., `t-7162342`). Pass the full ID including the prefix as the `template_id` path parameter when creating a Folder from a template.Connection
View the Folder templates available in a Workspace. Use this endpoint to retrieve Folder template IDs for use with the [Create Folder From Template](#tag/Folders/operation/CreateFolderFromTemplate) endpoint. Template IDs are returned with a `t-` prefix (e.g., `t-7162342`). Pass the full ID including the prefix as the `template_id` path parameter when creating a Folder from a template.
Authentication
Connected account requiredTags
Get Folder ViewsCLICKUP_GET_FOLDER_VIEWSView the task and page views available for a Folder.Connection
View the task and page views available for a Folder.
Authentication
Connected account requiredTags
Get Folderless ListsCLICKUP_GET_FOLDERLESS_LISTSView the Lists in a Space that aren't located in a Folder.Connection
View the Lists in a Space that aren't located in a Folder.
Authentication
Connected account requiredTags
Get FoldersCLICKUP_GET_FOLDERSView the Folders in a Space. Folders that are subfolders include a `parent_folder` field with the parent Folder ID.Connection
View the Folders in a Space. Folders that are subfolders include a `parent_folder` field with the parent Folder ID.
Authentication
Connected account requiredTags
Get GoalCLICKUP_GET_GOALView the details of a Goal including its Targets.Connection
View the details of a Goal including its Targets.
Authentication
Connected account requiredTags
Get GoalsCLICKUP_GET_GOALSView the Goals available in a Workspace.Connection
View the Goals available in a Workspace.
Authentication
Connected account requiredTags
Get GuestCLICKUP_GET_GUESTView information about a guest. \ \ ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*Connection
View information about a guest. \ \ ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*
Authentication
Connected account requiredTags
Get ListCLICKUP_GET_LISTView information about a List.Connection
View information about a List.
Authentication
Connected account requiredTags
Get List CommentsCLICKUP_GET_LIST_COMMENTSView the comments added to a List. \ \ If you do not include the `start` and `start_id` parameters, this endpoint will return the most recent 25 comments.\ \ Use the `start` and `start id` parameters of the oldest comment to retrieve the next 25 comments.Connection
View the comments added to a List. \ \ If you do not include the `start` and `start_id` parameters, this endpoint will return the most recent 25 comments.\ \ Use the `start` and `start id` parameters of the oldest comment to retrieve the next 25 comments.
Authentication
Connected account requiredTags
Get List MembersCLICKUP_GET_LIST_MEMBERSGet Workspace members who have explicit access to a List. Responses do not include people with access through a Team, or people with access from the Folder or Space where the List exists.Connection
Get Workspace members who have explicit access to a List. Responses do not include people with access through a Team, or people with access from the Folder or Space where the List exists.
Authentication
Connected account requiredTags
Get List TemplatesCLICKUP_GET_LIST_TEMPLATESView the List templates available in a Workspace. Use this endpoint to retrieve List template IDs for use with the [Create List From Template in Folder](#tag/Lists/operation/CreateFolderListFromTemplate) and [Create List From Template in Space](#tag/Lists/operation/CreateSpaceListFromTemplate) endpoints. Template IDs are returned with a `t-` prefix (e.g., `t-15363293`). Pass the full ID including the prefix as the `template_id` path parameter when creating a List from a template.Connection
View the List templates available in a Workspace. Use this endpoint to retrieve List template IDs for use with the [Create List From Template in Folder](#tag/Lists/operation/CreateFolderListFromTemplate) and [Create List From Template in Space](#tag/Lists/operation/CreateSpaceListFromTemplate) endpoints. Template IDs are returned with a `t-` prefix (e.g., `t-15363293`). Pass the full ID including the prefix as the `template_id` path parameter when creating a List from a template.
Authentication
Connected account requiredTags
Get List ViewsCLICKUP_GET_LIST_VIEWSView the task and page views available for a List.\ \ Views and required views are separate responses.Connection
View the task and page views available for a List.\ \ Views and required views are separate responses.
Authentication
Connected account requiredTags
Get ListsCLICKUP_GET_LISTSView the Lists within a Folder.Connection
View the Lists within a Folder.
Authentication
Connected account requiredTags
Get SpaceCLICKUP_GET_SPACEView the Spaces available in a Workspace.Connection
View the Spaces available in a Workspace.
Authentication
Connected account requiredTags
Get Space Custom FieldsCLICKUP_GET_SPACE_AVAILABLE_FIELDSView the Custom Fields you have access to in a specific Space. Get Space Custom Fields only returns Custom Fields created at the Space level. Custom Fields created at the Folder and List level are not included.\ \ Custom Fields scoped to specific custom task types include an `applied_objects` array on each field object. Each entry has `object_type` (`19` for custom task type) and `object_id` (the custom task type ID, matching `custom_item_id` on tasks). Use [Get Custom Task Types](ref:getcustomitems) to resolve IDs to names. Fields without task-type scoping omit `applied_objects`. Workspace-scoped Custom Fields are included when querying a Space.Connection
View the Custom Fields you have access to in a specific Space. Get Space Custom Fields only returns Custom Fields created at the Space level. Custom Fields created at the Folder and List level are not included.\ \ Custom Fields scoped to specific custom task types include an `applied_objects` array on each field object. Each entry has `object_type` (`19` for custom task type) and `object_id` (the custom task type ID, matching `custom_item_id` on tasks). Use [Get Custom Task Types](ref:getcustomitems) to resolve IDs to names. Fields without task-type scoping omit `applied_objects`. Workspace-scoped Custom Fields are included when querying a Space.
Authentication
Connected account requiredTags
Get Space TagsCLICKUP_GET_SPACE_TAGSView the task Tags available in a Space.Connection
View the task Tags available in a Space.
Authentication
Connected account requiredTags
Get Space ViewsCLICKUP_GET_SPACE_VIEWSView the task and page views available for a Space.Connection
View the task and page views available for a Space.
Authentication
Connected account requiredTags
Get SpacesCLICKUP_GET_SPACESView the Spaces avialable in a Workspace. You can only get member info in private Spaces.Connection
View the Spaces avialable in a Workspace. You can only get member info in private Spaces.
Authentication
Connected account requiredTags
Get TaskCLICKUP_GET_TASKView information about a task. You can only view task information of tasks you can access. \ \ Tasks with attachments will return an "attachments" response. \ \ Docs attached to a task are not returned.\ \ The `custom_fields` array only includes Custom Fields applicable to the task's `custom_item_id`. Use [Get Custom Fields](ref:getaccessiblecustomfields) and each field's `applied_objects` to discover which fields apply to which task types.Connection
View information about a task. You can only view task information of tasks you can access. \ \ Tasks with attachments will return an "attachments" response. \ \ Docs attached to a task are not returned.\ \ The `custom_fields` array only includes Custom Fields applicable to the task's `custom_item_id`. Use [Get Custom Fields](ref:getaccessiblecustomfields) and each field's `applied_objects` to discover which fields apply to which task types.
Authentication
Connected account requiredTags
Get Task CommentsCLICKUP_GET_TASK_COMMENTSView task comments. \ \ Retrieve comments from a task. Results are returned in reverse chronological order (newest to oldest). By default, the request returns the 25 most recent comments.\ \ [Pagination](https://developer.clickup.com/docs/task-comments-pagination): To fetch the next page of history (older comments), you must use the `start` and `start_id` parameters together, using the data from the last comment of the current response.Connection
View task comments. \ \ Retrieve comments from a task. Results are returned in reverse chronological order (newest to oldest). By default, the request returns the 25 most recent comments.\ \ [Pagination](https://developer.clickup.com/docs/task-comments-pagination): To fetch the next page of history (older comments), you must use the `start` and `start_id` parameters together, using the data from the last comment of the current response.
Authentication
Connected account requiredTags
Get Task MembersCLICKUP_GET_TASK_MEMBERSGet Workspace members who have explicit access to a task. Responses do not include people with access through a Team, or people with access from the List, Folder, or Space where the task exists.Connection
Get Workspace members who have explicit access to a task. Responses do not include people with access through a Team, or people with access from the List, Folder, or Space where the task exists.
Authentication
Connected account requiredTags
Get Task's Time in StatusCLICKUP_GET_TASK_S_TIMEIN_STATUSView how long a task has been in each status. The Total time in Status ClickApp must first be enabled by the Workspace owner or an admin.Connection
View how long a task has been in each status. The Total time in Status ClickApp must first be enabled by the Workspace owner or an admin.
Authentication
Connected account requiredTags
Get Task TemplatesCLICKUP_GET_TASK_TEMPLATESView the task templates available in a Workspace.Connection
View the task templates available in a Workspace.
Authentication
Connected account requiredTags
Get TasksCLICKUP_GET_TASKSView the tasks in a List. Responses are limited to 100 tasks per page. You can only view task information of tasks you can access. \ \ This endpoint only includes tasks where the specified `list_id` is their home List. Tasks added to the `list_id` with a different home List are not included in the response by default. To include tasks that exist in multiple lists, use the `include_timl` parameter. \ \ The `time_spent` field displays time tracked in milliseconds, and is only included in the response for tasks with time entries.\ \ Each task's `custom_fields` array only includes Custom Fields applicable to that task's `custom_item_id`.Connection
View the tasks in a List. Responses are limited to 100 tasks per page. You can only view task information of tasks you can access. \ \ This endpoint only includes tasks where the specified `list_id` is their home List. Tasks added to the `list_id` with a different home List are not included in the response by default. To include tasks that exist in multiple lists, use the `include_timl` parameter. \ \ The `time_spent` field displays time tracked in milliseconds, and is only included in the response for tasks with time entries.\ \ Each task's `custom_fields` array only includes Custom Fields applicable to that task's `custom_item_id`.
Authentication
Connected account requiredTags
Get Workspace Custom FieldsCLICKUP_GET_TEAM_AVAILABLE_FIELDSView the Custom Fields you have access to in a specific Workspace. Get Workspace Custom Fields only returns Custom Fields created at the Workspace level. Custom Fields created at the Space, Folder, and List level are not included.\ \ Custom Fields scoped to specific custom task types include an `applied_objects` array on each field object. Each entry has `object_type` (`19` for custom task type) and `object_id` (the custom task type ID, matching `custom_item_id` on tasks). Use [Get Custom Task Types](ref:getcustomitems) to resolve IDs to names. Fields without task-type scoping omit `applied_objects`.Connection
View the Custom Fields you have access to in a specific Workspace. Get Workspace Custom Fields only returns Custom Fields created at the Workspace level. Custom Fields created at the Space, Folder, and List level are not included.\ \ Custom Fields scoped to specific custom task types include an `applied_objects` array on each field object. Each entry has `object_type` (`19` for custom task type) and `object_id` (the custom task type ID, matching `custom_item_id` on tasks). Use [Get Custom Task Types](ref:getcustomitems) to resolve IDs to names. Fields without task-type scoping omit `applied_objects`.
Authentication
Connected account requiredTags
Get Workspace (Everything level) ViewsCLICKUP_GET_TEAM_VIEWSView the task and page views available at the Everything Level of a Workspace.Connection
View the task and page views available at the Everything Level of a Workspace.
Authentication
Connected account requiredTags
Get GroupsCLICKUP_GET_TEAMS1This endpoint is used to view [User Groups](https://docs.clickup.com/en/articles/4010016-teams-how-to-create-user-groups) in your Workspace.\ \ In our API documentation, `team_id` refers to the ID of a Workspace, and `group_id` refers to the ID of a User Group.Connection
This endpoint is used to view [User Groups](https://docs.clickup.com/en/articles/4010016-teams-how-to-create-user-groups) in your Workspace.\ \ In our API documentation, `team_id` refers to the ID of a Workspace, and `group_id` refers to the ID of a User Group.
Authentication
Connected account requiredTags
Get Threaded CommentsCLICKUP_GET_THREADED_COMMENTSView threaded comments. The parent comment is not included in the response.Connection
View threaded comments. The parent comment is not included in the response.
Authentication
Connected account requiredTags
Get UserCLICKUP_GET_USERView information about a user in a Workspace. \ \ ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*Connection
View information about a user in a Workspace. \ \ ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*
Authentication
Connected account requiredTags
Get ViewCLICKUP_GET_VIEWView information about a specific task or page view. The information returned about a view varies by the type of view.Connection
View information about a specific task or page view. The information returned about a view varies by the type of view.
Authentication
Connected account requiredTags
Get View TasksCLICKUP_GET_VIEW_TASKSSee all visible tasks in a view in ClickUp.Connection
See all visible tasks in a view in ClickUp.
Authentication
Connected account requiredTags
Get WebhooksCLICKUP_GET_WEBHOOKSView the webhooks created via the API for a Workspace. This endpoint returns webhooks created by the authenticated user.Connection
View the webhooks created via the API for a Workspace. This endpoint returns webhooks created by the authenticated user.
Authentication
Connected account requiredTags
Get Workspace PlanCLICKUP_GET_WORKSPACEPLANView the current [Plan](https://clickup.com/pricing) for the specified Workspace.Connection
View the current [Plan](https://clickup.com/pricing) for the specified Workspace.
Authentication
Connected account requiredTags
Get Workspace seatsCLICKUP_GET_WORKSPACESEATSView the used, total, and available member and guest seats for a Workspace.Connection
View the used, total, and available member and guest seats for a Workspace.
Authentication
Connected account requiredTags
Get all tags from time entriesCLICKUP_GETALLTAGSFROMTIMEENTRIESView all the labels that have been applied to time entries in a Workspace.Connection
View all the labels that have been applied to time entries in a Workspace.
Authentication
Connected account requiredTags
Get running time entryCLICKUP_GETRUNNINGTIMEENTRYView a time entry that's currently tracking time for the authenticated user. \ \ ***Note:** A time entry that has a negative duration means that timer is currently running for that user.*Connection
View a time entry that's currently tracking time for the authenticated user. \ \ ***Note:** A time entry that has a negative duration means that timer is currently running for that user.*
Authentication
Connected account requiredTags
Get singular time entryCLICKUP_GETSINGULARTIMEENTRYView a single time entry. \ \ ***Note:** A time entry that has a negative duration means that timer is currently running for that user.*Connection
View a single time entry. \ \ ***Note:** A time entry that has a negative duration means that timer is currently running for that user.*
Authentication
Connected account requiredTags
Get time entries within a date rangeCLICKUP_GETTIMEENTRIESWITHINADATERANGEView time entries filtered by start and end date. \ \ By default, this endpoint returns time entries from the last 30 days created by the authenticated user. \ \ To retrieve time entries for other users, you must include the `assignee` query parameter. \ \ Only one of the following location filters can be included at a time: `space_id`, `folder_id`, `list_id`, or `task_id`. \ \ ***Note:** A time entry that has a negative duration means that timer is currently running for that user.*Connection
View time entries filtered by start and end date. \ \ By default, this endpoint returns time entries from the last 30 days created by the authenticated user. \ \ To retrieve time entries for other users, you must include the `assignee` query parameter. \ \ Only one of the following location filters can be included at a time: `space_id`, `folder_id`, `list_id`, or `task_id`. \ \ ***Note:** A time entry that has a negative duration means that timer is currently running for that user.*
Authentication
Connected account requiredTags
Get time entry historyCLICKUP_GETTIMEENTRYHISTORYView a list of changes made to a time entry.Connection
View a list of changes made to a time entry.
Authentication
Connected account requiredTags
Get tracked timeCLICKUP_GETTRACKEDTIME***Note:** This is a legacy time tracking endpoint. We recommend using the Time Tracking API endpoints to manage time entries.*Connection
***Note:** This is a legacy time tracking endpoint. We recommend using the Time Tracking API endpoints to manage time entries.*
Authentication
Connected account requiredTags
Invite Guest To WorkspaceCLICKUP_INVITE_GUEST_TO_WORKSPACEInvite a guest to join a Workspace. To invite a member to your Workspace, use the [Invite User to Workspace](ref:inviteusertoworkspace) endpoint. \ \ You'll also need to grant the guest access to specific items using the following endpoints: [Add Guest to Folder](ref:addguesttofolder), [Add Guest to List](ref:addguesttolist), or [Add Guest to Task](ref:addguesttotask). \ \ ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*Connection
Invite a guest to join a Workspace. To invite a member to your Workspace, use the [Invite User to Workspace](ref:inviteusertoworkspace) endpoint. \ \ You'll also need to grant the guest access to specific items using the following endpoints: [Add Guest to Folder](ref:addguesttofolder), [Add Guest to List](ref:addguesttolist), or [Add Guest to Task](ref:addguesttotask). \ \ ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*
Authentication
Connected account requiredTags
Invite User To WorkspaceCLICKUP_INVITE_USER_TO_WORKSPACEInvite someone to join your Workspace as a member. To invite someone as a guest, use the [Invite Guest](ref:inviteguesttoworkspace) endpoint.\ \ ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*Connection
Invite someone to join your Workspace as a member. To invite someone as a guest, use the [Invite Guest](ref:inviteguesttoworkspace) endpoint.\ \ ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*
Authentication
Connected account requiredTags
Merge TasksCLICKUP_MERGE_TASKSMerge multiple tasks into a target task. The target task is specified by the task_id parameter, while the source tasks to be merged are provided in the request body. Custom Task IDs are not supported.Connection
Merge multiple tasks into a target task. The target task is specified by the task_id parameter, while the source tasks to be merged are provided in the request body. Custom Task IDs are not supported.
Authentication
Connected account requiredTags
Remove Custom Field ValueCLICKUP_REMOVE_CUSTOM_FIELD_VALUERemove the data from a Custom Field on a task. This does not delete the option from the Custom Field.Connection
Remove the data from a Custom Field on a task. This does not delete the option from the Custom Field.
Authentication
Connected account requiredTags
Remove Guest From FolderCLICKUP_REMOVE_GUEST_FROM_FOLDERRevoke a guest's access to a Folder. \ \ ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*Connection
Revoke a guest's access to a Folder. \ \ ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*
Authentication
Connected account requiredTags
Remove Guest From ListCLICKUP_REMOVE_GUEST_FROM_LISTRevoke a guest's access to a List.\ \ ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*Connection
Revoke a guest's access to a List.\ \ ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*
Authentication
Connected account requiredTags
Remove Guest From TaskCLICKUP_REMOVE_GUEST_FROM_TASKRevoke a guest's access to a task. \ \ ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*Connection
Revoke a guest's access to a task. \ \ ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*
Authentication
Connected account requiredTags
Remove Guest From WorkspaceCLICKUP_REMOVE_GUEST_FROM_WORKSPACERevoke a guest's access to a Workspace. \ \ ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*Connection
Revoke a guest's access to a Workspace. \ \ ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*
Authentication
Connected account requiredTags
Remove Tag From TaskCLICKUP_REMOVE_TAG_FROM_TASKRemove a Tag from a task. This does not delete the Tag from the Space.Connection
Remove a Tag from a task. This does not delete the Tag from the Space.
Authentication
Connected account requiredTags
Remove Task From ListCLICKUP_REMOVE_TASK_FROM_LISTRemove a task from an additional List. You can't remove a task from its home List. \ \ ***Note:** This endpoint requires the [Tasks in Multiple List ClickApp](https://help.clickup.com/hc/en-us/articles/6309958824727-Tasks-in-Multiple-Lists) to be enabled.*Connection
Remove a task from an additional List. You can't remove a task from its home List. \ \ ***Note:** This endpoint requires the [Tasks in Multiple List ClickApp](https://help.clickup.com/hc/en-us/articles/6309958824727-Tasks-in-Multiple-Lists) to be enabled.*
Authentication
Connected account requiredTags
Remove User From WorkspaceCLICKUP_REMOVE_USER_FROM_WORKSPACEDeactivate a user from a Workspace. \ \ ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*Connection
Deactivate a user from a Workspace. \ \ ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*
Authentication
Connected account requiredTags
Remove tags from time entriesCLICKUP_REMOVETAGSFROMTIMEENTRIESRemove labels from time entries. This does not remove the label from a Workspace.Connection
Remove labels from time entries. This does not remove the label from a Workspace.
Authentication
Connected account requiredTags
Set Custom Field ValueCLICKUP_SET_CUSTOM_FIELD_VALUEAdd data to a Custom field on a task. \ \ You'll need to know the `task_id` of the task you want to update, and the universal unique identifier (UUID) `field_id` of the Custom Field you want to set. \ \ The Custom Field must be applicable to the task's current `custom_item_id`. Use [Get Custom Fields](ref:getaccessiblecustomfields) (check each field's `applied_objects`) or [Get Task](ref:gettask) to find applicable `field_id` values.\ \ Returns `400` if the field is not enabled for the task's custom task type.Connection
Add data to a Custom field on a task. \ \ You'll need to know the `task_id` of the task you want to update, and the universal unique identifier (UUID) `field_id` of the Custom Field you want to set. \ \ The Custom Field must be applicable to the task's current `custom_item_id`. Use [Get Custom Fields](ref:getaccessiblecustomfields) (check each field's `applied_objects`) or [Get Task](ref:gettask) to find applicable `field_id` values.\ \ Returns `400` if the field is not enabled for the task's custom task type.
Authentication
Connected account requiredTags
Shared HierarchyCLICKUP_SHARED_HIERARCHYView the tasks, Lists, and Folders that have been shared with the authenticated user.Connection
View the tasks, Lists, and Folders that have been shared with the authenticated user.
Authentication
Connected account requiredTags
Start a time EntryCLICKUP_STARTATIME_ENTRYStart a timer for the authenticated user.Connection
Start a timer for the authenticated user.
Authentication
Connected account requiredTags
Stop a time EntryCLICKUP_STOPATIME_ENTRYStop a timer that's currently running for the authenticated user.Connection
Stop a timer that's currently running for the authenticated user.
Authentication
Connected account requiredTags
Track timeCLICKUP_TRACKTIME***Note:** This is a legacy time tracking endpoint. We recommend using the Time Tracking API endpoints to manage time entries.*Connection
***Note:** This is a legacy time tracking endpoint. We recommend using the Time Tracking API endpoints to manage time entries.*
Authentication
Connected account requiredTags
Update CommentCLICKUP_UPDATE_COMMENTReplace the content of a task commment, assign a comment, and mark a comment as resolved.Connection
Replace the content of a task commment, assign a comment, and mark a comment as resolved.
Authentication
Connected account requiredTags
Update FolderCLICKUP_UPDATE_FOLDERRename a Folder.Connection
Rename a Folder.
Authentication
Connected account requiredTags
Update GoalCLICKUP_UPDATE_GOALRename a Goal, set the due date, replace the description, add or remove owners, and set the Goal color.Connection
Rename a Goal, set the due date, replace the description, add or remove owners, and set the Goal color.
Authentication
Connected account requiredTags
Update ListCLICKUP_UPDATE_LISTRename a List, update the List Info description, set a due date/time, set the List's priority, set an assignee, set or remove the List color.Connection
Rename a List, update the List Info description, set a due date/time, set the List's priority, set an assignee, set or remove the List color.
Authentication
Connected account requiredTags
Update SpaceCLICKUP_UPDATE_SPACERename, set the Space color, and enable ClickApps for a Space.Connection
Rename, set the Space color, and enable ClickApps for a Space.
Authentication
Connected account requiredTags
Update TaskCLICKUP_UPDATE_TASKUpdate a task by including one or more fields in the request body.Connection
Update a task by including one or more fields in the request body.
Authentication
Connected account requiredTags
Update GroupCLICKUP_UPDATE_TEAMThis endpoint is used to manage [User Groups](https://docs.clickup.com/en/articles/4010016-teams-how-to-create-user-groups), which are groups of users within your Workspace.\ \ In our API, `team_id` in the path refers to the Workspace ID, and `group_id` refers to the ID of a User Group.\ \ **Note:** Adding a guest with view-only permissions to a User Group automatically converts them to a paid guest.\ \ If you don't have any paid guest seats available, a new member seat is automatically added to increase the number of paid guest seats.\ \ This incurs a prorated charge based on your billing cycle.Connection
This endpoint is used to manage [User Groups](https://docs.clickup.com/en/articles/4010016-teams-how-to-create-user-groups), which are groups of users within your Workspace.\ \ In our API, `team_id` in the path refers to the Workspace ID, and `group_id` refers to the ID of a User Group.\ \ **Note:** Adding a guest with view-only permissions to a User Group automatically converts them to a paid guest.\ \ If you don't have any paid guest seats available, a new member seat is automatically added to increase the number of paid guest seats.\ \ This incurs a prorated charge based on your billing cycle.
Authentication
Connected account requiredTags
Update ViewCLICKUP_UPDATE_VIEWRename a view, update the grouping, sorting, filters, columns, and settings of a view.Connection
Rename a view, update the grouping, sorting, filters, columns, and settings of a view.
Authentication
Connected account requiredTags
Update WebhookCLICKUP_UPDATE_WEBHOOKUpdate a webhook to change the events to be monitored.Connection
Update a webhook to change the events to be monitored.
Authentication
Connected account requiredTags
Update a time EntryCLICKUP_UPDATEATIME_ENTRYUpdate the details of a time entry.Connection
Update the details of a time entry.
Authentication
Connected account requiredTags