Create Deal
Creates a new deal in Kommo CRM
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_DEAL_ACTION])
Update Deal
Updates an existing deal's information in Kommo CRM
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_DEAL_ACTION])
Create Task
Creates a new task in Kommo CRM
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_TASK_ACTION])
Add Note
Adds a new note to a contact or deal in Kommo CRM
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_NOTE_ACTION])
Change Deal Stage
Changes the stage of an existing deal in Kommo CRM
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CHANGE_DEAL_STAGE_ACTION])
Create Company
Creates a new company in Kommo CRM
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_COMPANY_ACTION])
Update Company
Updates an existing company's information in Kommo CRM
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_COMPANY_ACTION])
Complete Task
Marks a task as completed in Kommo CRM
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.COMPLETE_TASK_ACTION])
Add Tag
Adds a tag to a contact or deal in Kommo CRM
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_TAG_ACTION])
Remove Tag
Removes a tag from a contact or deal in Kommo CRM
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.REMOVE_TAG_ACTION])
Create Pipeline
Creates a new pipeline in Kommo CRM
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_PIPELINE_ACTION])
New Deal
Triggered when a new deal is created in Kommo CRM
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_DEAL_TRIGGER])
Deal Stage Changed
Triggered when a deal's stage is changed in Kommo CRM
from composio_openai 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 Kommo CRM
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TASK_COMPLETED_TRIGGER])
New Note Added
Triggered when a new note is added to a contact or deal in Kommo CRM
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_NOTE_ADDED_TRIGGER])
New Company
Triggered when a new company is created in Kommo CRM
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_COMPANY_TRIGGER])
Deal Won
Triggered when a deal is marked as won in Kommo CRM
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DEAL_WON_TRIGGER])
Deal Lost
Triggered when a deal is marked as lost in Kommo CRM
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DEAL_LOST_TRIGGER])
New Task
Triggered when a new task is created in Kommo CRM
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_TASK_TRIGGER])
New Custom Field
Triggered when a new custom field is added to Kommo CRM
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_CUSTOM_FIELD_TRIGGER])
Tag Added
Triggered when a tag is added to a contact or deal in Kommo CRM
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TAG_ADDED_TRIGGER])
Tag Removed
Triggered when a tag is removed from a contact or deal in Kommo CRM
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TAG_REMOVED_TRIGGER])
New Pipeline
Triggered when a new pipeline is created in Kommo CRM
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_PIPELINE_TRIGGER])
New User
Triggered when a new user is added to the Kommo CRM account
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_USER_TRIGGER])
User Deactivated
Triggered when a user is deactivated in the Kommo CRM account
from composio_openai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.USER_DEACTIVATED_TRIGGER])