Create Event
Create a new event in Zoho Backstage.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_EVENT])
Update Event
Update an existing event's details in Zoho Backstage.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_EVENT])
Delete Event
Delete an event from Zoho Backstage.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DELETE_EVENT])
Create Session
Create a new session within an event in Zoho Backstage.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_SESSION])
Update Session
Update an existing session's details in Zoho Backstage.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_SESSION])
Delete Session
Delete a session from an event in Zoho Backstage.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DELETE_SESSION])
Create Speaker
Add a new speaker to Zoho Backstage.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_SPEAKER])
Update Speaker
Update an existing speaker's information in Zoho Backstage.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_SPEAKER])
Delete Speaker
Remove a speaker from Zoho Backstage.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DELETE_SPEAKER])
Create Ticket
Create a new ticket type for an event in Zoho Backstage.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_TICKET])
Update Ticket
Update an existing ticket type's details in Zoho Backstage.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_TICKET])
Delete Ticket
Delete a ticket type from an event in Zoho Backstage.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DELETE_TICKET])
New Registration
Triggered when a new attendee registers for an event.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_REGISTRATION])
Registration Updated
Triggered when an attendee's registration details are updated.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.REGISTRATION_UPDATED])
Registration Cancelled
Triggered when an attendee cancels their registration.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.REGISTRATION_CANCELLED])
Event Published
Triggered when an event is published in Zoho Backstage.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.EVENT_PUBLISHED])
Event Updated
Triggered when an event's details are updated.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.EVENT_UPDATED])
Session Added
Triggered when a new session is added to an event.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SESSION_ADDED])
Session Updated
Triggered when a session's details are updated.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SESSION_UPDATED])
Speaker Added
Triggered when a new speaker is added to an event.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SPEAKER_ADDED])
Speaker Updated
Triggered when a speaker's information is updated.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SPEAKER_UPDATED])
Ticket Purchased
Triggered when an attendee purchases a ticket.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TICKET_PURCHASED])
Event Check In
Triggered when an attendee checks in at the event.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.EVENT_CHECKIN])
Session Feedback Submitted
Triggered when an attendee submits feedback for a session.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SESSION_FEEDBACK_SUBMITTED])
Event Cancelled
Triggered when an event is cancelled in Zoho Backstage.
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.EVENT_CANCELLED])