Update Lead
Updates an existing lead's information in the system.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_LEAD_ACTION])
Create Task
Creates a new task associated with a lead or contact.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_TASK_ACTION])
Send Email
Sends an email to a specified lead or contact.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SEND_EMAIL_ACTION])
Update Deal
Updates an existing deal's information in the system.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_DEAL_ACTION])
Create Note
Creates a new note associated with a lead, contact, or deal.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_NOTE_ACTION])
Log Activity
Logs a new activity associated with a lead, contact, or deal.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.LOG_ACTIVITY_ACTION])
Update Lead Score
Updates the score of an existing lead in the system.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_LEAD_SCORE_ACTION])
Add Tag
Adds a tag to a lead, contact, or deal in the system.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_TAG_ACTION])
Remove Tag
Removes a tag from a lead, contact, or deal in the system.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.REMOVE_TAG_ACTION])
Update Campaign
Updates an existing marketing campaign in the system.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_CAMPAIGN_ACTION])
Add To List
Adds a lead or contact to a specified list in the system.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_TO_LIST_ACTION])
Remove From List
Removes a lead or contact from a specified list in the system.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.REMOVE_FROM_LIST_ACTION])
Schedule Appointment
Schedules a new appointment with a lead or contact.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SCHEDULE_APPOINTMENT_ACTION])
Update Deal Stage
Updates the stage of an existing deal in the pipeline.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_DEAL_STAGE_ACTION])
Create Workflow
Creates a new automated workflow in the system.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_WORKFLOW_ACTION])
New Lead
Triggered when a new lead is added to the system.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_LEAD_TRIGGER])
Lead Status Change
Triggered when a lead's status is changed.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.LEAD_STATUS_CHANGE_TRIGGER])
New Deal
Triggered when a new deal is created in the system.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_DEAL_TRIGGER])
New Note
Triggered when a new note is added to a lead, contact, or deal.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_NOTE_TRIGGER])
New Activity
Triggered when a new activity is logged in the system.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_ACTIVITY_TRIGGER])
Lead Score Change
Triggered when a lead's score changes.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.LEAD_SCORE_CHANGE_TRIGGER])
New Tag Added
Triggered when a new tag is added to a lead, contact, or deal.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_TAG_ADDED_TRIGGER])
New Campaign
Triggered when a new marketing campaign is created.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_CAMPAIGN_TRIGGER])
New List
Triggered when a new contact or lead list is created.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_LIST_TRIGGER])
New Appointment
Triggered when a new appointment is scheduled.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_APPOINTMENT_TRIGGER])
Deal Stage Change
Triggered when a deal's stage is changed in the pipeline.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DEAL_STAGE_CHANGE_TRIGGER])
New Web Visit
Triggered when a known lead or contact visits the website.
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_WEB_VISIT_TRIGGER])