Skip to main content

Documentation Index

Fetch the complete documentation index at: https://nango.dev/docs/llms.txt

Use this file to discover all available pages before exploring further.

πŸš€ Quickstart

Connect to ClickUp with Nango and see data flow in 2 minutes.
1

Create the integration

In Nango (free signup), go to Integrations -> Configure New Integration -> ClickUp. Nango doesn’t provide a test OAuth app for ClickUp yet. You’ll need to set up your own by following these instructions. After that, make sure to add the OAuth client ID and secret in the integration settings in Nango.
2

Authorize ClickUp

Go to Connections -> Add Test Connection -> Authorize, then log in to ClickUp. Later, you’ll let your users do the same directly from your app.
3

Call the ClickUp API

Let’s make your first request to the ClickUp API (fetch the profile of the currently signed-in user). Replace the placeholders below with your secret key, integration ID, and connection ID:
curl "https://api.nango.dev/proxy/api/v2/user" \
  -H "Authorization: Bearer <NANGO-SECRET-KEY>" \
  -H "Provider-Config-Key: <INTEGRATION-ID>" \
  -H "Connection-Id: <CONNECTION-ID>"
Or fetch credentials dynamically via the Node SDK or API.βœ… You’re connected! Check the Logs tab in Nango to inspect requests.
4

Implement Nango in your app

Follow our Auth implementation guide to integrate Nango in your app.To obtain your own production credentials, follow the setup guide linked below.

πŸ“š ClickUp Integration Guides

Nango maintained guides for common use cases. Official docs: ClickUp API docs

🧩 Pre-built syncs & actions for ClickUp

Enable them in your dashboard. Extend and customize to fit your needs.

Comments

Function nameDescriptionTypeSource code
create-commentCreate a comment in ClickUp on a task or listActionπŸ”— Github
delete-commentDelete a comment in ClickUpActionπŸ”— Github
list-commentsList comments from ClickUpActionπŸ”— Github
update-commentUpdate a comment in ClickUp.ActionπŸ”— Github

Folders

Function nameDescriptionTypeSource code
create-folderCreate a folder in ClickUp.ActionπŸ”— Github
delete-folderDelete a folder in ClickUpActionπŸ”— Github
get-folderRetrieve a single folder from ClickUp.ActionπŸ”— Github
update-folderUpdate a folder in ClickUpActionπŸ”— Github

Goals

Function nameDescriptionTypeSource code
create-goalCreate a goal in ClickUpActionπŸ”— Github
delete-goalDelete a goal in ClickUpActionπŸ”— Github
get-goalRetrieve a single goal from ClickUpActionπŸ”— Github
list-goalsList goals from ClickUpActionπŸ”— Github
update-goalUpdate a goal in ClickUpActionπŸ”— Github

Lists

Function nameDescriptionTypeSource code
create-listCreate a list in ClickUpActionπŸ”— Github
delete-listDelete a list in ClickUp. This is a permanent delete and all tasks inside the list are also deleted.ActionπŸ”— Github
get-listRetrieve a single list from ClickUp.ActionπŸ”— Github
list-listsList lists from ClickUpActionπŸ”— Github
update-listUpdate a list in ClickUp.ActionπŸ”— Github

Spaces

Function nameDescriptionTypeSource code
create-spaceCreate a space in ClickUp.ActionπŸ”— Github
delete-spaceDelete a space in ClickUpActionπŸ”— Github
get-spaceRetrieve a single space from ClickUpActionπŸ”— Github
list-spacesList spaces from ClickUpActionπŸ”— Github
update-spaceUpdate a space in ClickUp.ActionπŸ”— Github

Tasks

Function nameDescriptionTypeSource code
create-taskCreate a task in ClickUpActionπŸ”— Github
delete-taskDelete a task in ClickUpActionπŸ”— Github
get-taskRetrieve a single task from ClickUp.ActionπŸ”— Github
list-tasksList tasks from a ClickUp list with optional filtering and paginationActionπŸ”— Github
update-taskUpdate a task in ClickUpActionπŸ”— Github

Time Tracking

Function nameDescriptionTypeSource code
create-time-entryCreate a time entry in ClickUpActionπŸ”— Github
delete-time-entryDelete a time entry in ClickUpActionπŸ”— Github
get-time-entryRetrieve a single time entry from ClickUpActionπŸ”— Github
list-time-entriesList time entries from ClickUpActionπŸ”— Github
update-time-entryUpdate a time entry in ClickUp.ActionπŸ”— Github

Users

Function nameDescriptionTypeSource code
get-userRetrieve a single workspace member from ClickUp.ActionπŸ”— Github
list-usersList workspace members from ClickUpActionπŸ”— Github

Others

Function nameDescriptionTypeSource code
list-foldersList folders from a ClickUp spaceActionπŸ”— Github
commentsSync comments from ClickUpSyncπŸ”— Github
foldersSync folders from ClickUp.SyncπŸ”— Github
goalsSync goals from ClickUpSyncπŸ”— Github
listsSync lists from ClickUpSyncπŸ”— Github
spacesSync spaces from ClickUp.SyncπŸ”— Github
tasksSync tasks from ClickUp.SyncπŸ”— Github
time-entriesSync time entries from ClickUpSyncπŸ”— Github
usersSync workspace members from ClickUpSyncπŸ”— Github