Create Custom Audience
Create a new custom audience based on specific criteria or data sources.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_CUSTOM_AUDIENCE])
Update Custom Audience
Modify an existing custom audience by adding or removing users.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_CUSTOM_AUDIENCE])
Delete Custom Audience
Remove a custom audience from your Instagram ad account.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DELETE_CUSTOM_AUDIENCE])
Add Users To Custom Audience
Add new users to an existing custom audience.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_USERS_TO_AUDIENCE])
Remove Users From Custom Audience
Remove specific users from an existing custom audience.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.REMOVE_USERS_FROM_AUDIENCE])
Create Lookalike Audience
Generate a new audience similar to an existing custom audience.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_LOOKALIKE_AUDIENCE])
Merge Custom Audiences
Combine two or more custom audiences into a single audience.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MERGE_CUSTOM_AUDIENCES])
Split Custom Audience
Divide a custom audience into multiple smaller audiences based on criteria.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SPLIT_CUSTOM_AUDIENCE])
Rename Custom Audience
Change the name of an existing custom audience.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.RENAME_CUSTOM_AUDIENCE])
Copy Custom Audience
Create a duplicate of an existing custom audience.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.COPY_CUSTOM_AUDIENCE])
Export Custom Audience
Download the data of a custom audience in a specified format.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.EXPORT_CUSTOM_AUDIENCE])
Import Custom Audience
Create a new custom audience by importing user data from a file.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.IMPORT_CUSTOM_AUDIENCE])
Schedule Audience Update
Set up automatic updates for a custom audience at specified intervals.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SCHEDULE_AUDIENCE_UPDATE])
Create Engagement Based Audience
Generate a custom audience based on user engagement with Instagram content.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_ENGAGEMENT_AUDIENCE])
Create Website Traffic Audience
Create a custom audience from users who have visited your website.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_WEBSITE_TRAFFIC_AUDIENCE])
Audience Size Change
Trigger when a custom audience's size changes significantly.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.AUDIENCE_SIZE_CHANGE])
Audience Creation
Trigger when a new custom audience is created.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.AUDIENCE_CREATED])
Audience Deletion
Trigger when a custom audience is deleted.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.AUDIENCE_DELETED])
Audience Update Completion
Trigger when an audience update process is completed.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.AUDIENCE_UPDATE_COMPLETED])
Audience Merge Completion
Trigger when the merging of custom audiences is finished.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.AUDIENCE_MERGE_COMPLETED])
Audience Split Completion
Trigger when the splitting of a custom audience is completed.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.AUDIENCE_SPLIT_COMPLETED])
Lookalike Audience Creation
Trigger when a new lookalike audience is generated.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.LOOKALIKE_AUDIENCE_CREATED])
Audience Reach Threshold
Trigger when a custom audience reaches a specified size threshold.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.AUDIENCE_REACH_THRESHOLD])
Audience Overlap Detection
Trigger when significant overlap is detected between custom audiences.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.AUDIENCE_OVERLAP_DETECTED])
Audience Export Completion
Trigger when the export of a custom audience is finished.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.AUDIENCE_EXPORT_COMPLETED])
Audience Import Completion
Trigger when the import of a custom audience is completed.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.AUDIENCE_IMPORT_COMPLETED])
Audience Update Failure
Trigger when an attempt to update a custom audience fails.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.AUDIENCE_UPDATE_FAILED])
Audience Expiration Warning
Trigger when a custom audience is nearing its expiration date.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.AUDIENCE_EXPIRATION_WARNING])
Audience Sharing Status Change
Trigger when the sharing status of a custom audience is modified.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.AUDIENCE_SHARING_STATUS_CHANGED])
Audience Insights Available
Trigger when new insights or analytics are available for a custom audience.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.AUDIENCE_INSIGHTS_AVAILABLE])