Use Attio with CrewAI Python

Attio is a fully customizable workspace for your team's relationships and workflows.
๐Ÿ”— Connect and Use Attio
1. ๐Ÿ”‘ Connect your Attio account
2. โœ… Select an action
3. ๐Ÿš€ Go live with the agent
What do you want to do?

API actions for Attio for AI assitants/agents

Language
JS
PYTHON
Framework

Objects

List Objects

Lists all system-defined and user-defined objects in your workspace. Required scopes: `object_configuration:read`.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_LIST_OBJECTS])

Create An Object

Creates a new custom object in your workspace. Required scopes: `object_configuration:read-write`.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_CREATE_AN_OBJECT])

Get An Object

Gets a single object by its `object_id` or slug. Required scopes: `object_configuration:read`.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_GET_AN_OBJECT])

Update An Object

Updates a single object. The object to be updated is identified by its `object_id`. Required scopes: `object_configuration:read-write`.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_UPDATE_AN_OBJECT])

Attributes

List Attributes

Lists all attributes defined on a specific object or list. Attributes are returned in the order that they are sorted by in the UI. Required scopes: `object_configuration:read`.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_LIST_ATTRIBUTES])

Create An Attribute

Creates a new attribute on either an object or a list. To create an attribute on an object, you must also have the `object_configuration:read-write` scope. To create an attribute on a list, yo
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_CREATE_AN_ATTRIBUTE])

Get An Attribute

Gets information about a single attribute on either an object or a list. Required scopes: `object_configuration:read`.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_GET_AN_ATTRIBUTE])

Update An Attribute

Updates a single attribute on a given object or list. Required scopes: `object_configuration:read-write`.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_UPDATE_AN_ATTRIBUTE])

List Select Options

Lists all select options for a particular attribute on either an object or a list. Required scopes: `object_configuration:read`.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_LIST_SELECT_OPTIONS])

Create A Select Option

Adds a select option to a select attribute on an object or a list. Required scopes: `object_configuration:read-write`.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_CREATE_A_SELECT_OPTION])

Update A Select Option

Updates a select option on an attribute on either an object or a list. Required scopes: `object_configuration:read-write`.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_UPDATE_A_SELECT_OPTION])

List Statuses

Lists all statuses for a particular status attribute on either an object or a list. Required scopes: `object_configuration:read`.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_LIST_STATUSES])

Create A Status

Add a new status to a status attribute on either an object or a list. Required scopes: `object_configuration:read-write`.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_CREATE_A_STATUS])

Update A Status

Update a status on an status attribute on either an object or a list. Required scopes: `object_configuration:read-write`.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_UPDATE_A_STATUS])

Records

List Records

Lists people, company or other records, with the option to filter and sort results. Required scopes: `record_permission:read`, `object_configuration:read`.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_LIST_RECORDS])

Create A Record

This endpoint creates new person, company, or record, throwing errors on unique attribute conflicts. For updates on conflicts, use the Assert record endpoint. Requires `record_permission:read-
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_CREATE_A_RECORD])

Assert A Record

This endpoint creates/updates records based on a matching attribute, adding to multiselect attributes without deletion. Requires `record_permission:read-write` and `object_configuration:read`
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_ASSERT_A_RECORD])

Get A Record

Gets a single person, company or other record by its `record_id`. Required scopes: `record_permission:read`, `object_configuration:read`.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_GET_A_RECORD])

Update A Record

This endpoint adds new multiselect values to records by `record_id` without deleting existing ones. Overwriting or removal is managed by the Assert record endpoint. It requires `record_permiss
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_UPDATE_A_RECORD])

Delete A Record

Deletes a single record (e.g. a company or person) by ID. Required scopes: `object_configuration:read`, `record_permission:read-write`.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_DELETE_A_RECORD])

List Record Attribute Values

Gets all values for a given attribute on a record. If the attribute is historic, this endpoint has the ability to return all historic values using the `show_historic` query param. Required sco
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_LIST_RECORD_ATTRIBUTE_VALUES])

List Record Entries

List all entries, across all lists, for which this record is the parent. Required scopes: `record_permission:read`, `object_configuration:read`, `list_entry:read`.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_LIST_RECORD_ENTRIES])

Lists

List All Lists

List all lists that your access token has access to. lists are returned in the order that they are sorted in the sidebar. Required scopes: `list_configuration:read`.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_LIST_ALL_LISTS])

Create A List

Use APIs to manage lists: add attributes/records, set 'parent_object', and control access via 'workspace_access' or 'member_access'. Ensure full access to prevent '403' errors. Required scope:
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_CREATE_A_LIST])

Get A List

Gets a single list in your workspace that your access token has access to. Required scopes: `list_configuration:read`.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_GET_A_LIST])

Update A List

Updates an existing list, managing permissions for full access. May face a `403` error for insufficient plan access. API can't modify the list's parent objectโ€”use UI. Needs `list_configuration
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_UPDATE_A_LIST])

Entries

List Entries

Lists entries in a given list, with the option to filter and sort results. Required scopes: `list_entry:read`, `list_configuration:read`.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_LIST_ENTRIES])

Create An Entry Add Record To List

Adds a record to a list as a new list entry. This endpoint will throw on conflicts of unique attributes. Multiple list entries are allowed for the same parent record Required scopes: `list_ent
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_CREATE_AN_ENTRY_ADD_RECORD_TO_LIST])

Assert A List Entry By Parent

This endpoint manages list entries for a parent record, updating or creating new ones. It handles multi-select attributes and requires `list_entry:read-write` and `list_config:read` scopes. Er
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_ASSERT_A_LIST_ENTRY_BY_PARENT])

Get A List Entry

Gets a single list entry by its `entry_id`. Required scopes: `list_entry:read`, `list_configuration:read`.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_GET_A_LIST_ENTRY])

Update A List Entry Append Multiselect Values

Use the endpoint with `entry_id` to update list entries, appending new multiselect values. To overwrite or remove these, use `PUT`. Required scopes: `list_entry:read-write`, `list_configuratio
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_UPDATE_A_LIST_ENTRY_APPEND_MULTISELECT_VALUES])

Update A List Entry Overwrite Multiselect Values

Update list entries via `entry_id` using this endpoint. Updating multiselect attributes overwrites existing values. Use `PATCH` to add to multiselect attributes without deletion. Required scop
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_UPDATE_A_LIST_ENTRY_OVERWRITE_MULTISELECT_VALUES])

Delete A List Entry

Deletes a single list entry by its `entry_id`. Required scopes: `list_entry:read-write`, `list_configuration:read`.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_DELETE_A_LIST_ENTRY])

List Attribute Values For A List Entry

Gets all values for a given attribute on a list entry. If the attribute is historic, this endpoint has the ability to return all historic values using the `show_historic` query param. Required
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_LIST_ATTRIBUTE_VALUES_FOR_A_LIST_ENTRY])

Workspace members

List Workspace Members

Lists all workspace members in the workspace. Required scopes: `user_management:read`.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_LIST_WORKSPACE_MEMBERS])

Get A Workspace Member

Gets a single workspace member by ID. Required scopes: `user_management:read`.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_GET_A_WORKSPACE_MEMBER])

Notes

List Notes

List notes for all records or for a specific record. Required scopes: `note:read`, `object_configuration:read`, `record_permission:read`.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_LIST_NOTES])

Create A Note

Creates a new note for a given record. At present, notes can only be created from plaintext without formatting. Required scopes: `note:read-write`, `object_configuration:read`, `record_permiss
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_CREATE_A_NOTE])

Get A Note

Get a single note by ID. Required scopes: `note:read`, `object_configuration:read`, `record_permission:read`.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_GET_A_NOTE])

Delete A Note

Delete a single note by ID. Required scopes: `note:read-write`.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_DELETE_A_NOTE])

Tasks

List Tasks

List all tasks. Results are sorted by creation date, from oldest to newest. Required scopes: `task:read`, `object_configuration:read`, `record_permission:read`, `user_management:read`.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_LIST_TASKS])

Create A Task

Creates a new task. At present, tasks can only be created from plaintext without record reference formatting. Required scopes: `task:read-write`, `object_configuration:read`, `record_permissio
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_CREATE_A_TASK])

Get A Task

Get a single task by ID. Required scopes: `task:read`, `object_configuration:read`, `record_permission:read`, `user_management:read`.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_GET_A_TASK])

Update A Task

Updates a task by `task_id`, allowing changes to `deadline_at`, `is_completed`, `linked_records`, and `assignees`. Requires four scopes: task & object config read-write, record permission, and
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_UPDATE_A_TASK])

Delete A Task

Delete a task by ID. Required scopes: `task:read-write`.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_DELETE_A_TASK])

Threads

List Threads

To view comment threads on records or list entries, specific scopes are needed: `object_configuration:read` and `record_permission:read` for records, `list_configuration:read` and `list_entry:
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_LIST_THREADS])

Get A Thread

To view all comments in a thread, required scopes include `object_configuration:read`, `record_permission:read` for record threads, `list_configuration:read`, `list_entry:read` for list entrie
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_GET_A_THREAD])

Comments

Create A Comment

The text details the process and necessary permissions (`object_configuration:read`, `record_permission:read`, `list_configuration:read`, `list_entry:read`, `comment:read-write`) to create com
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_CREATE_A_COMMENT])

Get A Comment

To view a comment by ID, required scopes include `comment:read`, with additional scopes (`object_configuration:read`, `record_permission:read`) for record comments, and (`list_configuration:re
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_GET_A_COMMENT])

Delete A Comment

Deletes a comment by ID. If deleting a comment at the head of a thread, all messages in the thread are also deleted. Required scopes: `comment:read-write`.
from composio_crewai import ComposioToolSet, Action tool_set = ComposioToolSet() tools = tool_set.get_tools(actions=[Action.ATTIO_DELETE_A_COMMENT])

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 Attio?

Composio.dev seamlessly integrates with Attio, making it a breeze to leverage its capabilities within the Composio.dev platform. You can use Attio 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 Attio and crewAI_python?

When using Attio and crewAI_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 Attio with crewAI_python?

Integrating Attio with crewAI_python is super easy with Composio.dev! You can use the Composio.dev API to call functions from both Attio and crewAI_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 Attio and crewAI_python?

Both Attio and crewAI_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 Attio and crewAI_python?

Attio and crewAI_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 Attio and crewAI_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 Attio to my project?

Absolutely! You can easily incorporate Attio into your project by utilizing the Composio.dev API. This API allows you to call functions from both Attio and crewAI_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 Attio and crewAI_python?

Attio and crewAI_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 Attio and crewAI_python?

Attio and crewAI_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 Attio handle data privacy and security?

Data privacy and security are crucial considerations when working with AI systems, and Attio 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. Attio 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 Attio for your AI development needs.

Can I customize Attio and crewAI_python for my specific needs?

Absolutely! Attio and crewAI_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 Attio and crewAI_python?

Attio and crewAI_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๐Ÿงช