Use Clickup with OpenAI Python

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
Framework

Guests

Add Guest To Task

Share a task with a guest. ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_ADD_GUEST_TO_TASK])

Remove Guest From Task

Revoke a guest's access to a task. ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_REMOVE_GUEST_FROM_TASK])

Add Guest To List

Share a List with a guest. ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_ADD_GUEST_TO_LIST])

Remove Guest From List

Revoke a guest's access to a List. ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_REMOVE_GUEST_FROM_LIST])

Add Guest To Folder

Share a Folder with a guest. ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_ADD_GUEST_TO_FOLDER])

Remove Guest From Folder

Revoke a guest's access to a Folder. ***Note:** This endpoint is only available to Workspaces on our [Enterprise Plan](https://clickup.com/pricing).*
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_REMOVE_GUEST_FROM_FOLDER])

Lists

Get Lists

View the Lists within a Folder.
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_LISTS])

Lists Get Folder Lists

View the Lists within a Folder.<<DEPRECATED use get_lists>>
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_LISTS_GET_FOLDER_LISTS])

Create List

Add a new List to a Folder.
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_CREATE_LIST])

Get Folderless Lists

View the Lists in a Space that aren't located in a Folder.
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_FOLDERLESS_LISTS])

Create Folderless List

Add a new List in a Space.
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_CREATE_FOLDERLESS_LIST])

Get List

View information about a List.
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_LIST])

Update List

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

Delete List

Delete a List from your Workspace.
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_DELETE_LIST])

Add Task To List

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

Remove Task From List

This API endpoint allows for removing a task from an extra list, not its original list, requiring the Tasks in Multiple List ClickApp to be enabled.
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_REMOVE_TASK_FROM_LIST])

Members

Get Task Members

View the people who have access to a task.
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_TASK_MEMBERS])

Get List Members

View the people who have access to a List.
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_LIST_MEMBERS])

Members Get List Users

View the people who have access to a List.<<DEPRECATED use get_list_members>>
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_MEMBERS_GET_LIST_USERS])

Roles

Get Custom Roles

View the Custom Roles available in a Workspace.
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_CUSTOM_ROLES])

Shared Hierarchy

Shared Hierarchy

View the tasks, Lists, and Folders that have been shared with the authenticated user.
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_SHARED_HIERARCHY])

Spaces

Get Spaces

View the Spaces avialable in a Workspace. You can only get member info in private Spaces.
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_SPACES])

Spaces Get Space Details

View the Spaces avialable in a Workspace. You can only get member info in private Spaces.<<DEPRECATED use get_spaces>>
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_SPACES_GET_SPACE_DETAILS])

Create Space

Add a new Space to a Workspace.
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_CREATE_SPACE])

Get Space

View the Spaces available in a Workspace.
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_SPACE])

Spaces Get Details

View the Spaces available in a Workspace.<<DEPRECATED use get_space>>
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_SPACES_GET_DETAILS])

Update Space

Rename, set the Space color, and enable ClickApps for a Space.
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_UPDATE_SPACE])

Delete Space

Delete a Space from your Workspace.
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_DELETE_SPACE])

Tags

Get Space Tags

View the task Tags available in a Space.
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_SPACE_TAGS])

Create Space Tag

Add a new task Tag to a Space.
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_CREATE_SPACE_TAG])

Edit Space Tag

Update a task Tag.
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_EDIT_SPACE_TAG])

Delete Space Tag

Delete a task Tag from a Space.
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_DELETE_SPACE_TAG])

Add Tag To Task

Add a Tag to a task.
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_ADD_TAG_TO_TASK])

Remove Tag From Task

Remove a Tag from a task. This does not delete the Tag from the Space.
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_REMOVE_TAG_FROM_TASK])

Tasks

Get Tasks

This API endpoint allows viewing up to 100 tasks per page, limited to tasks within the specified `list_id` that have it as their home List. Tasks from other home Lists aren't included.
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_TASKS])

Tasks Get List Tasks

This API endpoint allows viewing up to 100 tasks per page, limited to tasks within the specified `list_id` that have it as their home List. Tasks from other home Lists aren't included.<<DEPREC
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_TASKS_GET_LIST_TASKS])

Create Task

Create a new task.
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_CREATE_TASK])

Get Task

View information about a task. You can only view task information of tasks you can access. Tasks with attachments will return an "attachments" response.
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_TASK])

Tasks Get Task Details

View information about a task. You can only view task information of tasks you can access. Tasks with attachments will return an "attachments" response.<<DEPRECATED use get_task>>
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_TASKS_GET_TASK_DETAILS])

Update Task

Update a task by including one or more fields in the request body.
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_UPDATE_TASK])

Delete Task

Delete a task from your Workspace.
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_DELETE_TASK])

Get Filtered Team Tasks

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

Get Task S Time In Status

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

Get Bulk Tasks Time In Status

View how long two or more tasks have been in each status.
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_BULK_TASKS_TIME_IN_STATUS])

Task Templates

Get Task Templates

View the task templates available in a Workspace.
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_TASK_TEMPLATES])

Create Task From Template

Create a new task using a task template.
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_CREATE_TASK_FROM_TEMPLATE])

Teams - Workspaces

Get Workspace Seats

View the used, total, and available member and guest seats for a Workspace.
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_WORKSPACE_SEATS])

Teams Work Spaces Get Work Space Seats

View the used, total, and available member and guest seats for a Workspace.<<DEPRECATED use get_workspace_seats>>
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_TEAMS_WORK_SPACES_GET_WORK_SPACE_SEATS])

Get Workspace Plan

View the current [Plan](https://clickup.com/pricing) for the specified Workspace.
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_GET_WORKSPACE_PLAN])

Teams Work Spaces Get Work Space Plan

View the current [Plan](https://clickup.com/pricing) for the specified Workspace.<<DEPRECATED use get_workspace_plan>>
from composio_openai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.CLICKUP_TEAMS_WORK_SPACES_GET_WORK_SPACE_PLAN])

Frequently asked questions

What is Composio.dev?

Composio.dev is a cutting-edge framework for building AI applications, designed to make the process of developing AI solutions super easy and fun! It's a collection of powerful tools and libraries that simplify the process of creating AI applications, 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, making it a breeze to leverage its capabilities within the Composio.dev platform. You can use Clickup to call functions on various platforms like Google, GitHub, and others, allowing you to incorporate different services into your AI applications with ease. It also supports user login via OAuth2 and can work with other popular frameworks such as LangChain and CrewAI, giving you the flexibility to build truly innovative AI solutions.

What models can I use with Clickup and openAI_python?

When using Clickup and openAI_python, 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 with openAI_python?

Integrating Clickup with openAI_python is super easy with Composio.dev! You can use the Composio.dev API to call functions from both Clickup and openAI_python, allowing you to tap into their capabilities with just a few lines of code. The SDK is available in Python, JavaScript, and TypeScript, so you can work with the language you're most comfortable with and integrate these powerful tools into your projects seamlessly.

What is the pricing for Clickup and openAI_python?

Both Clickup and openAI_python are completely free to use, with a generous free tier that allows up to 1000 requests per month. This makes them accessible for developers and organizations of all sizes, whether you're a student working on a personal project or a startup building the next big thing. You can get started with these powerful tools without worrying about breaking the bank.

What kind of authentication is supported for Clickup and openAI_python?

Clickup and openAI_python support OAuth2 authentication, ensuring secure and authorized access to their functionalities. You can use the Composio.dev API to handle authentication and call functions from both Clickup and openAI_python 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 both Clickup and openAI_python, enabling you to leverage their 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 these powerful tools to your project with ease.

What is the accuracy of Clickup and openAI_python?

Clickup and openAI_python are 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. The 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 and openAI_python?

Clickup and openAI_python can be used for a wide range of AI applications, making them versatile tools for developers and creators alike. Some common use cases include natural language processing, text generation, question answering, sentiment analysis, and more. They're 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, these tools 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.

Can I customize Clickup and openAI_python for my specific needs?

Absolutely! Clickup and openAI_python are highly customizable and extensible, allowing you to tailor their functionality, models, and configurations to meet your specific requirements. Whether you're building a chatbot, a content creation tool, or any other AI-powered application, you can customize these tools to fit your unique needs. Additionally, Composio.dev provides a flexible platform for integrating and orchestrating various AI tools and services, enabling you to create custom AI solutions that are tailored to your project.

What kind of support and documentation is available for Clickup and openAI_python?

Clickup and openAI_python have comprehensive documentation and a supportive community, making it easy for you to get started and find answers to your questions. Composio.dev also provides extensive resources, including tutorials, guides, and a dedicated support team to assist you throughout your AI development journey. Whether you're a beginner or an experienced developer, you'll have access to the resources you need to make the most of these powerful tools.
+ 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๐Ÿงช