Create Landing Page
Creates a new landing page in Unbounce
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_LANDING_PAGE_ACTION])
Update Landing Page
Updates an existing landing page in Unbounce
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_LANDING_PAGE_ACTION])
Delete Landing Page
Deletes a landing page from Unbounce
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DELETE_LANDING_PAGE_ACTION])
Publish Landing Page
Publishes a landing page in Unbounce
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.PUBLISH_LANDING_PAGE_ACTION])
Unpublish Landing Page
Unpublishes a landing page in Unbounce
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UNPUBLISH_LANDING_PAGE_ACTION])
Create A/B Test
Creates a new A/B test for a landing page
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_AB_TEST_ACTION])
End A/B Test
Ends an ongoing A/B test
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.END_AB_TEST_ACTION])
Create Sticky Bar
Creates a new sticky bar in Unbounce
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_STICKY_BAR_ACTION])
Update Sticky Bar
Updates an existing sticky bar in Unbounce
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_STICKY_BAR_ACTION])
Delete Sticky Bar
Deletes a sticky bar from Unbounce
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DELETE_STICKY_BAR_ACTION])
Add Script
Adds a custom script to a landing page, popup, or sticky bar
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_SCRIPT_ACTION])
Remove Script
Removes a custom script from a landing page, popup, or sticky bar
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.REMOVE_SCRIPT_ACTION])
Update SEO Settings
Updates the SEO settings of a landing page
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_SEO_SETTINGS_ACTION])
Create Template
Creates a new template in Unbounce
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_TEMPLATE_ACTION])
New Lead
Triggered when a new lead is captured through an Unbounce landing page
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_LEAD_TRIGGER])
Page View
Triggered when a landing page is viewed
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.PAGE_VIEW_TRIGGER])
A/B Test Started
Triggered when an A/B test is initiated on a landing page
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.AB_TEST_STARTED_TRIGGER])
A/B Test Completed
Triggered when an A/B test is completed
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.AB_TEST_COMPLETED_TRIGGER])
Page Published
Triggered when a landing page is published
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.PAGE_PUBLISHED_TRIGGER])
Page Unpublished
Triggered when a landing page is unpublished
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.PAGE_UNPUBLISHED_TRIGGER])
Conversion Rate Change
Triggered when there's a significant change in conversion rate
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CONVERSION_RATE_CHANGE_TRIGGER])
Traffic Spike
Triggered when there's a sudden increase in traffic to a landing page
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TRAFFIC_SPIKE_TRIGGER])
Goal Reached
Triggered when a predefined conversion goal is reached
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GOAL_REACHED_TRIGGER])