Create Lead
Creates a new lead in Seamless.AI
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_LEAD_ACTION])
Update Lead
Updates an existing lead in Seamless.AI
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_LEAD_ACTION])
Create Company
Creates a new company in Seamless.AI
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_COMPANY_ACTION])
Update Company
Updates an existing company in Seamless.AI
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_COMPANY_ACTION])
Add To List
Adds a contact or lead to a specified list in Seamless.AI
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_TO_LIST_ACTION])
Remove From List
Removes a contact or lead from a specified list in Seamless.AI
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.REMOVE_FROM_LIST_ACTION])
Enrich Data
Enriches data for a specified contact or company in Seamless.AI
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ENRICH_DATA_ACTION])
Verify Email
Initiates email verification for a specified contact in Seamless.AI
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.VERIFY_EMAIL_ACTION])
Export Data
Exports specified data from Seamless.AI
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.EXPORT_DATA_ACTION])
Import Data
Imports data into Seamless.AI from an external source
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.IMPORT_DATA_ACTION])
Create Task
Creates a new task associated with a lead or contact in Seamless.AI
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_TASK_ACTION])
Update Task
Updates an existing task in Seamless.AI
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_TASK_ACTION])
Generate Report
Generates a custom report based on specified parameters in Seamless.AI
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GENERATE_REPORT_ACTION])
Sync With CRM
Initiates a sync between Seamless.AI and an integrated CRM platform
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SYNC_WITH_CRM_ACTION])
Schedule Campaign
Schedules a new marketing or sales campaign in Seamless.AI
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SCHEDULE_CAMPAIGN_ACTION])
Update User Preferences
Updates user preferences or settings in Seamless.AI
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_USER_PREFERENCES_ACTION])
Manage API Keys
Manages API keys for integrations with Seamless.AI
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MANAGE_API_KEYS_ACTION])
New Lead
Triggered when a new lead is added to Seamless.AI
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_LEAD_TRIGGER])
Lead Status Change
Triggered when a lead's status is updated in Seamless.AI
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.LEAD_STATUS_CHANGE_TRIGGER])
New Company
Triggered when a new company is added to Seamless.AI
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_COMPANY_TRIGGER])
List Update
Triggered when a list is updated in Seamless.AI
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.LIST_UPDATE_TRIGGER])
Search Completed
Triggered when a search is completed in Seamless.AI
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SEARCH_COMPLETED_TRIGGER])
Data Enrichment Complete
Triggered when data enrichment is completed for a contact or company
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DATA_ENRICHMENT_COMPLETE_TRIGGER])
Email Verification Complete
Triggered when email verification is completed for a contact
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.EMAIL_VERIFICATION_COMPLETE_TRIGGER])
Credit Usage Alert
Triggered when credit usage reaches a specified threshold
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREDIT_USAGE_ALERT_TRIGGER])
Integration Sync Complete
Triggered when a sync with an integrated platform is completed
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.INTEGRATION_SYNC_COMPLETE_TRIGGER])