Create Appointment
Schedule a new appointment in Zoho Bookings
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_APPOINTMENT])
Cancel Appointment
Cancel an existing appointment in Zoho Bookings
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CANCEL_APPOINTMENT])
Reschedule Appointment
Change the date and time of an existing appointment
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.RESCHEDULE_APPOINTMENT])
Get Appointment Details
Retrieve detailed information about a specific appointment
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GET_APPOINTMENT_DETAILS])
List Appointments
Get a list of appointments for a specific date range
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.LIST_APPOINTMENTS])
Create Customer
Add a new customer to Zoho Bookings
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_CUSTOMER])
Update Customer
Modify existing customer information in Zoho Bookings
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_CUSTOMER])
Get Customer Details
Retrieve detailed information about a specific customer
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GET_CUSTOMER_DETAILS])
List Customers
Get a list of all customers in Zoho Bookings
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.LIST_CUSTOMERS])
Create Service
Add a new service offering to Zoho Bookings
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_SERVICE])
Update Service
Modify existing service information in Zoho Bookings
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_SERVICE])
Delete Service
Remove a service offering from Zoho Bookings
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DELETE_SERVICE])
List Services
Get a list of all available services in Zoho Bookings
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.LIST_SERVICES])
Create Staff Member
Add a new staff member to Zoho Bookings
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_STAFF_MEMBER])
Update Staff Member
Modify existing staff member information in Zoho Bookings
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_STAFF_MEMBER])
Delete Staff Member
Remove a staff member from Zoho Bookings
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DELETE_STAFF_MEMBER])
List Staff Members
Get a list of all staff members in Zoho Bookings
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.LIST_STAFF_MEMBERS])
Create Availability
Set up availability for a staff member or service
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_AVAILABILITY])
Update Availability
Modify existing availability for a staff member or service
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_AVAILABILITY])
Delete Availability
Remove availability for a staff member or service
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DELETE_AVAILABILITY])
New Appointment
Triggered when a new appointment is created in Zoho Bookings
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_APPOINTMENT_TRIGGER])
Appointment Canceled
Triggered when an appointment is canceled in Zoho Bookings
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.APPOINTMENT_CANCELED_TRIGGER])
Appointment Rescheduled
Triggered when an appointment is rescheduled in Zoho Bookings
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.APPOINTMENT_RESCHEDULED_TRIGGER])
Appointment Reminder
Triggered at a set time before an appointment as a reminder
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.APPOINTMENT_REMINDER_TRIGGER])
New Customer
Triggered when a new customer is added to Zoho Bookings
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_CUSTOMER_TRIGGER])
Customer Updated
Triggered when customer information is updated in Zoho Bookings
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CUSTOMER_UPDATED_TRIGGER])
New Service Added
Triggered when a new service is added to Zoho Bookings
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_SERVICE_TRIGGER])
Service Updated
Triggered when service information is updated in Zoho Bookings
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SERVICE_UPDATED_TRIGGER])
Service Deleted
Triggered when a service is removed from Zoho Bookings
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SERVICE_DELETED_TRIGGER])
Staff Member Added
Triggered when a new staff member is added to Zoho Bookings
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.STAFF_MEMBER_ADDED_TRIGGER])