Initiate Call
Initiates a new outbound call through Dialzara to a specified number.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.INITIATE_CALL])
Send SMS
Sends an SMS message to a specified number through Dialzara.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SEND_SMS])
Schedule Call
Schedules a future call in the Dialzara system with specified details.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SCHEDULE_CALL])
Cancel Scheduled Call
Cancels a previously scheduled call in Dialzara.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CANCEL_SCHEDULED_CALL])
Set Call Forwarding
Configures call forwarding settings for a specified number in Dialzara.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SET_CALL_FORWARDING])
Disable Call Forwarding
Disables call forwarding for a specified number in Dialzara.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DISABLE_CALL_FORWARDING])
Set Voicemail Greeting
Sets or updates the voicemail greeting for a specified number in Dialzara.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SET_VOICEMAIL_GREETING])
Generate Call Report
Generates a call activity report for a specified time period in Dialzara.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GENERATE_CALL_REPORT])
Block Number
Adds a specified number to the blocked list in Dialzara.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.BLOCK_NUMBER])
Unblock Number
Removes a specified number from the blocked list in Dialzara.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UNBLOCK_NUMBER])
Set Do Not Disturb
Enables Do Not Disturb mode for a specified duration in Dialzara.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SET_DO_NOT_DISTURB])
Disable Do Not Disturb
Disables the Do Not Disturb mode in Dialzara.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DISABLE_DO_NOT_DISTURB])
Create Conference Call
Sets up a new conference call with specified participants in Dialzara.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_CONFERENCE_CALL])
Add Participant To Conference
Adds a new participant to an ongoing conference call in Dialzara.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_PARTICIPANT_TO_CONFERENCE])
Call Initiated
Triggered when a new call is initiated through Dialzara.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CALL_INITIATED])
Call Ended
Triggered when a call is completed or terminated in Dialzara.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CALL_ENDED])
Voicemail Received
Triggered when a new voicemail is received in the Dialzara system.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.VOICEMAIL_RECEIVED])
SMS Received
Triggered when a new SMS message is received through Dialzara.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SMS_RECEIVED])
Missed Call
Triggered when a call is missed or not answered in Dialzara.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MISSED_CALL])
New Group Created
Triggered when a new contact group is created in Dialzara.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_GROUP_CREATED])
Call Recording Completed
Triggered when a call recording is completed and available in Dialzara.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CALL_RECORDING_COMPLETED])
New Scheduled Call
Triggered when a new call is scheduled in the Dialzara system.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_SCHEDULED_CALL])