Use Clickup with AI Agents

ClickUp is a productivity platform that provides a fundamentally new way to work.
๐Ÿ”— Connect and Use Clickup
1. ๐Ÿ”‘ Connect your Clickup account
2. โœ… Select an action
3. ๐Ÿš€ Go live with the agent
What do you want to do?
Actions
Attachments
- Create task attachment
Authorization
Task Checklists
Comments
Custom Fields
Task Relationships
Folders
Goals
Guests
Lists
Members
Roles
Shared Hierarchy
Spaces
Tags
Tasks
Task Templates
Teams - Workspaces
Teams - User Groups
Custom Task Types
Time Tracking (Legacy)
Time Tracking
Users
Views
Webhooks

API actions for Clickup for AI assitants/agents

Language
JS
PYTHON

Teams - User Groups

Create Team

The endpoint allows creating Teams within Workspaces, assigning tasks, and managing IDs for both. Adding a view-only guest as a paid member may result in extra charges due to automatic seat ad
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_CREATE_TEAM])

Teams User Groups Create Team

The endpoint allows creating Teams within Workspaces, assigning tasks, and managing IDs for both. Adding a view-only guest as a paid member may result in extra charges due to automatic seat ad
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_TEAMS_USER_GROUPS_CREATE_TEAM])

Update Team

The endpoint controls user group assignments in a Workspace, requiring 'team_id' and 'group_id'. Adding a view-only guest as a paid member incurs prorated charges for additional seats.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_UPDATE_TEAM])

Delete Team

This endpoint removes a user group from a Workspace, per ClickUp documentation. `team_id` is the Workspace id, and `group_id` is the user group id.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_DELETE_TEAM])

Get Teams

This endpoint allows viewing user groups (Teams) in a Workspace, where `team_id` is the Workspace ID, and `group_id` is a user group ID in API documentation.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_TEAMS])

Custom Task Types

Get Custom Task Types

View the custom task types available in a Workspace.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_CUSTOM_TASK_TYPES])

Time Tracking (Legacy)

Get Tracked Time

***Note:** This is a legacy time tracking endpoint. We recommend using the Time Tracking API endpoints to manage time entries.*
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_TRACKED_TIME])

Track Time

***Note:** This is a legacy time tracking endpoint. We recommend using the Time Tracking API endpoints to manage time entries.*
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_TRACK_TIME])

Edit Time Tracked

***Note:** This is a legacy time tracking endpoint. We recommend using the Time Tracking API endpoints to manage time entries.*
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_EDIT_TIME_TRACKED])

Delete Time Tracked

***Note:** This is a legacy time tracking endpoint. We recommend using the Time Tracking API endpoints to manage time entries.*
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_DELETE_TIME_TRACKED])

Time Tracking

Get Time Entries Within A Date Range

This API endpoint retrieves time entries for the past 30 days for the user or others using the `assignee` parameter, and allows filtering by `space_id` or `task_id`. Negative durations show ac
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_TIME_ENTRIES_WITHIN_A_DATE_RANGE])

Create A Time Entry

Create a time entry. ***Note:** A time entry that has a negative duration means that timer is currently running for that user.*
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_CREATE_A_TIME_ENTRY])

Get Singular Time Entry

View a single time entry. ***Note:** A time entry that has a negative duration means that timer is currently running for that user.*
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_SINGULAR_TIME_ENTRY])

Delete A Time Entry

Delete a time entry from a Workspace.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_DELETE_A_TIME_ENTRY])

Update A Time Entry

Update the details of a time entry.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_UPDATE_A_TIME_ENTRY])

Get Time Entry History

View a list of changes made to a time entry.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_TIME_ENTRY_HISTORY])

Get Running Time Entry

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.*
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_RUNNING_TIME_ENTRY])

Remove Tags From Time Entries

Remove labels from time entries. This does not remove the label from a Workspace.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_REMOVE_TAGS_FROM_TIME_ENTRIES])

Get All Tags From Time Entries

View all the labels that have been applied to time entries in a Workspace.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_ALL_TAGS_FROM_TIME_ENTRIES])

Add Tags From Time Entries

Add a label to a time entry.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_ADD_TAGS_FROM_TIME_ENTRIES])

Change Tag Names From Time Entries

Rename an time entry label.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_CHANGE_TAG_NAMES_FROM_TIME_ENTRIES])

Start A Time Entry

Start a timer for the authenticated user.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_START_A_TIME_ENTRY])

Stop A Time Entry

Stop a timer that's currently running for the authenticated user.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_STOP_A_TIME_ENTRY])

Users

Invite User To Workspace

Invite someone to your Workspace as a member through a specific endpoint. Note: Guest invitations and this feature are exclusive to Workspaces on the Enterprise Plan.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_INVITE_USER_TO_WORKSPACE])

Get User

View information about a user in a Workspace. ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_USER])

Edit User On Workspace

Update a user's name and role. ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_EDIT_USER_ON_WORKSPACE])

Remove User From Workspace

Deactivate a user from a Workspace. ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_REMOVE_USER_FROM_WORKSPACE])

Views

Get Workspace Everything Level Views

View the task and page views available at the Everything Level of a Workspace.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_WORKSPACE_EVERYTHING_LEVEL_VIEWS])

Views Get Everything Level

View the task and page views available at the Everything Level of a Workspace.<<DEPRECATED use get_workspace_everything_level_views>>
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_VIEWS_GET_EVERYTHING_LEVEL])

Create Workspace Everything Level View

Add a List, Board, Calendar, Table, Timeline, Workload, Activity, Map, Chat, or Gantt view at the Everything Level of a Workspace.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_CREATE_WORKSPACE_EVERYTHING_LEVEL_VIEW])

Get Space Views

View the task and page views available for a Space.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_SPACE_VIEWS])

Views Space Views Get

View the task and page views available for a Space.<<DEPRECATED use get_space_views>>
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_VIEWS_SPACE_VIEWS_GET])

Create Space View

Add a List, Board, Calendar, Table, Timeline, Workload, Activity, Map, Chat, or Gantt view to a Space.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_CREATE_SPACE_VIEW])

Get Folder Views

View the task and page views available for a Folder.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_FOLDER_VIEWS])

Create Folder View

Add a List, Board, Calendar, Table, Timeline, Workload, Activity, Map, Chat, or Gantt view to a Folder.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_CREATE_FOLDER_VIEW])

Get List Views

View the task and page views available for a List.<br> Views and required views are separate responses.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_LIST_VIEWS])

Create List View

Add a List, Board, Calendar, Table, Timeline, Workload, Activity, Map, Chat, or Gantt view to a List.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_CREATE_LIST_VIEW])

Get View

View information about a specific task or page view.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_VIEW])

Update View

Rename a view, update the grouping, sorting, filters, columns, and settings of a view.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_UPDATE_VIEW])

Delete View

Deletes a specific View by its ID. Requires 'view_id' as a string parameter in the path. Successful deletion returns 200 with an empty JSON object.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_DELETE_VIEW])

Get View Tasks

See all visible tasks in a view in ClickUp.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_VIEW_TASKS])

Webhooks

Get Webhooks

View the webhooks created via the API for a Workspace. This endpoint returns webhooks created by the authenticated user.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_WEBHOOKS])

Create Webhook

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.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_CREATE_WEBHOOK])

Update Webhook

Update a webhook to change the events to be monitored.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_UPDATE_WEBHOOK])

Delete Webhook

Delete a webhook to stop monitoring the events and locations of the webhook.
from composio_langchain import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_DELETE_WEBHOOK])

Frequently asked questions

What is Composio.dev?

Composio.dev is a platform for building AI applications, designed to make the process of developing AI solutions super easy and fun! It provides a comprehensive set of tools and libraries that simplify the process of developing AI solutions, allowing you to focus on the creative aspects of your project without getting bogged down by the technical details.

How does Composio.dev support Clickup?

Composio.dev seamlessly integrates with Clickup, allowing you to leverage its capabilities within the Composio.dev platform. You can utilize Clickup to call functions across various platforms, including Google, GitHub, and others, making it a breeze to incorporate different services into your AI applications. Additionally, it supports user authentication via OAuth2 and can work in conjunction with other popular frameworks like LangChain and CrewAI, giving you the flexibility to build truly innovative AI solutions.

What models can I use with Clickup?

With Clickup, you have access to a wide range of state-of-the-art language models, including GPT-4o (OpenAI), GPT-3.5 (OpenAI), GPT-4 (OpenAI), Claude (Anthropic), PaLM (Google), LLaMA and LLaMA 2 (Meta), Gemini, and many others. This flexibility allows you to choose the model that best suits your specific use case, whether you're building a chatbot, a content creation tool, or any other AI-powered application. You can experiment with different models and find the one that delivers the best performance for your project.

How can I integrate Clickup into my project?

Composio.dev provides a seamless integration for Clickup, making it super easy to incorporate this powerful framework into your projects. You can leverage the Composio.dev API to call functions from Clickup, allowing you to tap into its capabilities with just a few lines of code. The SDK is available in Python, JavaScript, and TypeScript, so you can work with your preferred programming language and integrate Clickup into your projects seamlessly.

What is the pricing for Clickup?

Clickup is completely free to use, with a generous free tier that allows up to 1000 requests per month. This makes it accessible for developers and organizations of all sizes to explore and experiment with this powerful tool without any upfront costs. Whether you're a student working on a personal project or a startup building the next big thing, you can get started with Clickup without worrying about breaking the bank.

What kind of authentication is supported for Clickup?

Clickup supports OAuth2 authentication, ensuring secure and authorized access to its functionalities. You can leverage the Composio.dev API to handle authentication and call functions from Clickup seamlessly. The SDK is available in Python, JavaScript, and TypeScript for your convenience, making it easy to integrate authentication into your projects and keep your users' data safe and secure.

Can I add Clickup to my project?

Absolutely! You can easily incorporate Clickup into your project by utilizing the Composio.dev API. This API allows you to call functions from Clickup, enabling you to leverage its capabilities within your application. The SDK is available in Python, JavaScript, and TypeScript to facilitate integration, so you can work with the language you're most comfortable with and add Clickup to your project with ease.

What is the accuracy of Clickup?

Clickup is designed to provide highly accurate and reliable results, ensuring that your AI applications perform at their best. The integration with Composio.dev ensures precise function calls, enabling you to build robust and powerful AI applications with confidence. Clickup's comprehensive framework and the ability to leverage state-of-the-art models ensure reliable and accurate outcomes for your AI development needs, whether you're working on a chatbot, a content creation tool, or any other AI-powered project.

What are some common use cases for Clickup?

Clickup can be used for a wide range of AI applications, making it a versatile tool for developers and creators alike. Some common use cases include natural language processing, text generation, question answering, sentiment analysis, and more. It's particularly useful for building chatbots, virtual assistants, content creation tools, and other AI-powered applications that can help you automate tasks, engage with users, and create compelling content. Whether you're working on a personal project or building a product for your startup, Clickup can help you bring your ideas to life.

How does Clickup handle data privacy and security?

Data privacy and security are crucial considerations when working with AI systems, and Clickup takes these issues seriously. It follows industry best practices and adheres to strict data protection regulations, ensuring that your data is kept safe and secure. Clickup provides robust security measures, such as encryption and access controls, to ensure the confidentiality and integrity of your data. You can rest assured that your sensitive information is protected when using Clickup for your AI development needs.
+ Integrate seamlessly with your agentic frameworks
Composio Works with All Shapes and SizesComposio Works with All Shapes and SizesComposio Works with All Shapes and SizesComposio Works with All Shapes and SizesComposio Works with All Shapes and Sizes
Building for AI across continents๐Ÿงช