Create Page
Create a new landing page in Instapage.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_PAGE])
Update Page
Update an existing landing page with new content or settings.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_PAGE])
Delete Page
Delete a specific landing page from Instapage.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DELETE_PAGE])
Publish Page
Publish a landing page to make it live and accessible.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.PUBLISH_PAGE])
Unpublish Page
Unpublish a live landing page, making it inaccessible to visitors.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UNPUBLISH_PAGE])
Duplicate Page
Create a copy of an existing landing page.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DUPLICATE_PAGE])
Create A/B Test
Set up an A/B test for a landing page with multiple variants.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_AB_TEST])
End A/B Test
Conclude an ongoing A/B test and select the winning variant.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.END_AB_TEST])
Add Collaborator
Add a new collaborator to a landing page or project.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_COLLABORATOR])
Remove Collaborator
Remove a collaborator from a landing page or project.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.REMOVE_COLLABORATOR])
Create Segment
Create a new audience segment for targeted campaigns.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_SEGMENT])
Update Segment
Modify an existing audience segment.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_SEGMENT])
Generate Heatmap
Generate a heatmap for a specific landing page to visualize user interactions.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GENERATE_HEATMAP])
New Lead Captured
Triggered when a new lead submits a form on a landing page.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_LEAD_CAPTURED])
Page Published
Triggered when a landing page is published and goes live.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.PAGE_PUBLISHED])
Page Unpublished
Triggered when a landing page is unpublished and taken offline.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.PAGE_UNPUBLISHED])
A/B Test Started
Triggered when a new A/B test is initiated for a landing page.
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 concludes and a winner is determined.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.AB_TEST_ENDED])
Conversion Goal Reached
Triggered when a specified conversion goal is achieved on a landing page.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CONVERSION_GOAL_REACHED])
Traffic Spike Detected
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.TRAFFIC_SPIKE_DETECTED])
Low Conversion Rate Alert
Triggered when a landing page's conversion rate falls below a specified threshold.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.LOW_CONVERSION_RATE_ALERT])
High Bounce Rate Alert
Triggered when a landing page's bounce rate exceeds a specified threshold.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.HIGH_BOUNCE_RATE_ALERT])
New Collaborator Added
Triggered when a new collaborator is added to a landing page or project.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_COLLABORATOR_ADDED])
Page Load Time Alert
Triggered when a landing page's load time exceeds a specified threshold.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.PAGE_LOAD_TIME_ALERT])
Custom Domain Connected
Triggered when a custom domain is successfully connected to a landing page.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CUSTOM_DOMAIN_CONNECTED])
Integration Connected
Triggered when a new third-party integration is connected to Instapage.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.INTEGRATION_CONNECTED])
Experiment Reached Statistical Significance
Triggered when an experiment reaches statistical significance in results.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.EXPERIMENT_STATISTICAL_SIGNIFICANCE])