Create Deal
Create a new deal in ActiveCampaign with specified details.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_DEAL])
Update Deal
Modify existing deal information in ActiveCampaign.
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 ActiveCampaign with specified details.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_TASK])
Update Task
Modify existing task information in ActiveCampaign.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_TASK])
Send Email Campaign
Initiate sending of a specific email campaign to selected contacts.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SEND_EMAIL_CAMPAIGN])
Create List
Create a new contact list in ActiveCampaign.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_LIST])
New Deal Created
Triggered when a new deal is created in ActiveCampaign.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_DEAL_CREATED])
Deal Updated
Triggered when deal information is updated in ActiveCampaign.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DEAL_UPDATED])
Deal Stage Changed
Triggered when a deal moves to a different stage in ActiveCampaign.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DEAL_STAGE_CHANGED])
Email Opened
Triggered when a contact opens an email sent through ActiveCampaign.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.EMAIL_OPENED])
Email Link Clicked
Triggered when a contact clicks a link in an email sent through ActiveCampaign.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.EMAIL_LINK_CLICKED])
Task Completed
Triggered when a task is marked as completed in ActiveCampaign.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TASK_COMPLETED])
Campaign Sent
Triggered when an email campaign is sent in ActiveCampaign.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CAMPAIGN_SENT])