Create Task
Creates a new task in Redtail CRM with provided details
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_TASK])
Update Task
Updates an existing task's information in Redtail CRM
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_TASK])
Delete Task
Deletes a specified task from Redtail CRM
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DELETE_TASK])
Create Note
Creates a new note in Redtail CRM associated with a contact or account
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_NOTE])
Update Note
Updates an existing note's content in Redtail CRM
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_NOTE])
Delete Note
Deletes a specified note from Redtail CRM
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DELETE_NOTE])
Create Account
Creates a new account in Redtail CRM with provided information
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_ACCOUNT])
Update Account
Updates an existing account's information in Redtail CRM
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_ACCOUNT])
Delete Account
Deletes a specified account from Redtail CRM
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DELETE_ACCOUNT])
Create Opportunity
Creates a new opportunity in Redtail CRM with provided details
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_OPPORTUNITY])
Update Opportunity
Updates an existing opportunity's information in Redtail CRM
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_OPPORTUNITY])
Delete Opportunity
Deletes a specified opportunity from Redtail CRM
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DELETE_OPPORTUNITY])
Create Activity
Creates a new activity record in Redtail CRM
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_ACTIVITY])
Update Activity
Updates an existing activity record in Redtail CRM
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_ACTIVITY])
Delete Activity
Deletes a specified activity record from Redtail CRM
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DELETE_ACTIVITY])
New Task Created
Triggered when a new task is created in Redtail CRM
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_TASK_CREATED])
Task Completed
Triggered when a task is marked as completed in Redtail CRM
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TASK_COMPLETED])
New Note Added
Triggered when a new note is added to a contact or account in Redtail CRM
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_NOTE_ADDED])
New Account Created
Triggered when a new account is created in Redtail CRM
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_ACCOUNT_CREATED])
Account Updated
Triggered when an account's information is updated in Redtail CRM
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ACCOUNT_UPDATED])
New Opportunity Created
Triggered when a new opportunity is created in Redtail CRM
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_OPPORTUNITY_CREATED])
Opportunity Status Changed
Triggered when an opportunity's status is changed in Redtail CRM
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.OPPORTUNITY_STATUS_CHANGED])