Create Lead
Creates a new lead in Zoho CRM
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_LEAD])
Update Lead
Updates an existing lead in Zoho CRM
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_LEAD])
Create Deal
Creates a new deal in Zoho CRM
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_DEAL])
Update Deal
Updates an existing deal in Zoho CRM
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_DEAL])
Create Task
Creates a new task in Zoho CRM
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_TASK])
Update Task
Updates an existing task in Zoho CRM
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_TASK])
Send Email
Sends an email using Zoho Mail
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SEND_EMAIL])
Create Invoice
Creates a new invoice in Zoho Invoice
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_INVOICE])
Create Project
Creates a new project in Zoho Projects
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_PROJECT])
Add Time Entry
Adds a time entry to a project in Zoho Projects
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_TIME_ENTRY])
Create Survey
Creates a new survey in Zoho Survey
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_SURVEY])
Create Meeting
Schedules a new meeting in Zoho Meeting
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_MEETING])
New Lead
Triggers when a new lead is created in Zoho CRM
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_LEAD_TRIGGER])
Updated Lead
Triggers when a lead is updated in Zoho CRM
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATED_LEAD_TRIGGER])
New Deal
Triggers when a new deal is created in Zoho CRM
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_DEAL_TRIGGER])
Updated Deal
Triggers when a deal is updated in Zoho CRM
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATED_DEAL_TRIGGER])
New Task
Triggers when a new task is created in Zoho CRM
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_TASK_TRIGGER])
Updated Task
Triggers when a task is updated in Zoho CRM
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATED_TASK_TRIGGER])
New Invoice
Triggers when a new invoice is created in Zoho Invoice
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_INVOICE_TRIGGER])
New Project
Triggers when a new project is created in Zoho Projects
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_PROJECT_TRIGGER])
New Time Entry
Triggers when a new time entry is added in Zoho Projects
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_TIME_ENTRY_TRIGGER])
New Survey Response
Triggers when a new survey response is received in Zoho Survey
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_SURVEY_RESPONSE_TRIGGER])
Meeting Started
Triggers when a scheduled meeting starts in Zoho Meeting
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MEETING_STARTED_TRIGGER])
Email Received
Triggers when a new email is received in Zoho Mail
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.EMAIL_RECEIVED_TRIGGER])