Create Deal
Creates a new deal in Bigin by Zoho CRM
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_DEAL])
Update Deal
Updates an existing deal's information in Bigin by Zoho CRM
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_DEAL])
Create Task
Creates a new task in Bigin by Zoho CRM
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 Bigin by Zoho CRM
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_TASK])
Create Company
Creates a new company record in Bigin by Zoho CRM
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_COMPANY])
Update Company
Updates an existing company's information in Bigin by Zoho CRM
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_COMPANY])
Add Note
Adds a new note to a record in Bigin by Zoho CRM
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_NOTE])
Create Invoice
Creates a new invoice in Bigin by Zoho CRM
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_INVOICE])
Send Email
Sends an email to a contact or lead in Bigin by Zoho CRM
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SEND_EMAIL])
Add Tag
Adds a tag to a record in Bigin by Zoho CRM
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_TAG])
Remove Tag
Removes a tag from a record in Bigin by Zoho CRM
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.REMOVE_TAG])
Create Product
Creates a new product in Bigin by Zoho CRM
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_PRODUCT])
Update Product
Updates an existing product's information in Bigin by Zoho CRM
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_PRODUCT])
New Deal
Triggers when a new deal is created in Bigin by Zoho CRM
from composio_langchain 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 Bigin by Zoho CRM
from composio_langchain 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 Bigin by Zoho CRM
from composio_langchain 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 Bigin by Zoho CRM
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATED_TASK_TRIGGER])
New Company
Triggers when a new company is created in Bigin by Zoho CRM
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_COMPANY_TRIGGER])
Updated Company
Triggers when a company is updated in Bigin by Zoho CRM
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATED_COMPANY_TRIGGER])
New Note
Triggers when a new note is added to a record in Bigin by Zoho CRM
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_NOTE_TRIGGER])
New Invoice
Triggers when a new invoice is created in Bigin by Zoho CRM
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_INVOICE_TRIGGER])
Deal Stage Changed
Triggers when a deal's stage is changed in Bigin by Zoho CRM
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DEAL_STAGE_CHANGED_TRIGGER])
New Product
Triggers when a new product is created in Bigin by Zoho CRM
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_PRODUCT_TRIGGER])
Updated Product
Triggers when a product is updated in Bigin by Zoho CRM
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATED_PRODUCT_TRIGGER])
Tag Added
Triggers when a tag is added to a record in Bigin by Zoho CRM
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TAG_ADDED_TRIGGER])
Tag Removed
Triggers when a tag is removed from a record in Bigin by Zoho CRM
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TAG_REMOVED_TRIGGER])