Create New Landing Page
Creates a new landing page in Leadpages
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_LANDING_PAGE])
Publish Landing Page
Publishes an existing landing page
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.PUBLISH_LANDING_PAGE])
Update Landing Page
Updates the content or settings of an existing landing page
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_LANDING_PAGE])
Delete Landing Page
Deletes an existing landing page
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DELETE_LANDING_PAGE])
Duplicate Landing Page
Creates a copy of an existing landing page
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DUPLICATE_LANDING_PAGE])
Create New Alert Bar
Creates a new alert bar in Leadpages
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_ALERT_BAR])
Publish Alert Bar
Publishes an existing alert bar
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.PUBLISH_ALERT_BAR])
Update Alert Bar
Updates the content or settings of an existing alert bar
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_ALERT_BAR])
Delete Alert Bar
Deletes an existing alert bar
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DELETE_ALERT_BAR])
Add New Subscriber
Adds a new subscriber to a Leadpages mailing list
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_SUBSCRIBER])
Remove Subscriber
Removes a subscriber from a Leadpages mailing list
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.REMOVE_SUBSCRIBER])
Create A/B Test
Creates a new A/B test for landing pages or popups
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_AB_TEST])
End A/B Test
Ends an active A/B test and selects the winner
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.END_AB_TEST])
New Lead Captured
Triggered when a new lead is captured through a Leadpages form
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_LEAD_CAPTURED])
Landing Page Published
Triggered when a landing page is published
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.LANDING_PAGE_PUBLISHED])
Alert Bar Published
Triggered when an alert bar is published
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ALERT_BAR_PUBLISHED])
A/B Test Started
Triggered when a new A/B test is started
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.AB_TEST_STARTED])
A/B Test Ended
Triggered when an A/B test is ended and a winner is selected
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.AB_TEST_ENDED])
Subscription Goal Reached
Triggered when a predefined subscription goal is reached
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SUBSCRIPTION_GOAL_REACHED])
Landing Page Traffic Spike
Triggered when there's a significant increase in traffic to a landing page
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.LANDING_PAGE_TRAFFIC_SPIKE])
Conversion Rate Change
Triggered when there's a notable change in conversion rate for a page or form
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CONVERSION_RATE_CHANGE])