Create Deal
Create a new deal in Zoho Bigin with specified details.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_DEAL])
Update Deal
Update an existing deal's information in Zoho Bigin.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_DEAL])
Create Task
Create a new task in Zoho Bigin with specified details.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_TASK])
Update Task
Update an existing task's information in Zoho Bigin.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_TASK])
Create Note
Create a new note in Zoho Bigin with specified content.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_NOTE])
Create Activity
Create a new activity in Zoho Bigin with specified details.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_ACTIVITY])
Update Activity
Update an existing activity's information in Zoho Bigin.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_ACTIVITY])
Send Email
Send an email to a contact or lead using Zoho Bigin.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SEND_EMAIL])
Create Invoice
Create a new invoice in Zoho Bigin with specified details.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_INVOICE])
Update Invoice
Update an existing invoice's information in Zoho Bigin.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_INVOICE])
Create Product
Create a new product in Zoho Bigin with specified details.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_PRODUCT])
Update Product
Update an existing product's information in Zoho Bigin.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_PRODUCT])
Add Tag
Add a tag to a record (contact, deal, etc.) in Zoho Bigin.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_TAG])
New Deal
Triggered when a new deal is created in Zoho Bigin.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_DEAL_TRIGGER])
Updated Deal
Triggered when a deal is updated in Zoho Bigin.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATED_DEAL_TRIGGER])
New Task
Triggered when a new task is created in Zoho Bigin.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_TASK_TRIGGER])
Updated Task
Triggered when a task is updated in Zoho Bigin.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATED_TASK_TRIGGER])
New Note
Triggered when a new note is added in Zoho Bigin.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_NOTE_TRIGGER])
New Activity
Triggered when a new activity is created in Zoho Bigin.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_ACTIVITY_TRIGGER])
Updated Activity
Triggered when an activity is updated in Zoho Bigin.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATED_ACTIVITY_TRIGGER])
New Invoice
Triggered when a new invoice is created in Zoho Bigin.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_INVOICE_TRIGGER])
Updated Invoice
Triggered when an invoice is updated in Zoho Bigin.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATED_INVOICE_TRIGGER])
New Product
Triggered when a new product is added in Zoho Bigin.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_PRODUCT_TRIGGER])
Updated Product
Triggered when a product is updated in Zoho Bigin.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATED_PRODUCT_TRIGGER])
Deal Stage Changed
Triggered when a deal's stage is changed in Zoho Bigin.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DEAL_STAGE_CHANGED_TRIGGER])
Task Completed
Triggered when a task is marked as completed in Zoho Bigin.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TASK_COMPLETED_TRIGGER])