Create Invoice
Create a new invoice in Zoho Books.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_INVOICE])
Record Payment
Record a payment received for an invoice in Zoho Books.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.RECORD_PAYMENT])
Create Estimate
Create a new estimate or quote for a customer in Zoho Books.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_ESTIMATE])
Create Customer
Add a new customer to Zoho Books.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_CUSTOMER])
Create Expense
Record a new expense in Zoho Books.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_EXPENSE])
Create Item
Add a new item or product to the inventory in Zoho Books.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_ITEM])
Create Bill
Create a new bill for a vendor in Zoho Books.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_BILL])
Record Bill Payment
Record a payment made for a bill in Zoho Books.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.RECORD_BILL_PAYMENT])
Create Credit Note
Create a new credit note for a customer in Zoho Books.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_CREDIT_NOTE])
Create Journal Entry
Create a new journal entry in Zoho Books.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_JOURNAL_ENTRY])
Create Project
Create a new project in Zoho Books.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_PROJECT])
Create Time Entry
Log a new time entry for a project in Zoho Books.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_TIME_ENTRY])
Create Purchase Order
Create a new purchase order in Zoho Books.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_PURCHASE_ORDER])
Create Sales Order
Create a new sales order in Zoho Books.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_SALES_ORDER])
Create Vendor
Add a new vendor to Zoho Books.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_VENDOR])
New Invoice
Triggered when a new invoice is created in Zoho Books.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_INVOICE_TRIGGER])
Invoice Paid
Triggered when an invoice is marked as paid in Zoho Books.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.INVOICE_PAID_TRIGGER])
New Estimate
Triggered when a new estimate is created in Zoho Books.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_ESTIMATE_TRIGGER])
Estimate Accepted
Triggered when an estimate is accepted by a customer in Zoho Books.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ESTIMATE_ACCEPTED_TRIGGER])
New Customer
Triggered when a new customer is added to Zoho Books.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_CUSTOMER_TRIGGER])
New Expense
Triggered when a new expense is recorded in Zoho Books.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_EXPENSE_TRIGGER])
Low Stock Alert
Triggered when an item's stock falls below a specified threshold in Zoho Books.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.LOW_STOCK_ALERT_TRIGGER])
New Bill
Triggered when a new bill is created in Zoho Books.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_BILL_TRIGGER])
Bill Paid
Triggered when a bill is marked as paid in Zoho Books.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.BILL_PAID_TRIGGER])
New Credit Note
Triggered when a new credit note is created in Zoho Books.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_CREDIT_NOTE_TRIGGER])
New Project
Triggered when a new project is created in Zoho Books.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_PROJECT_TRIGGER])
Project Status Change
Triggered when a project's status changes in Zoho Books.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.PROJECT_STATUS_CHANGE_TRIGGER])
New Time Entry
Triggered when a new time entry is logged in Zoho Books.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_TIME_ENTRY_TRIGGER])
New Purchase Order
Triggered when a new purchase order is created in Zoho Books.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_PURCHASE_ORDER_TRIGGER])
New Sales Order
Triggered when a new sales order is created in Zoho Books.
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_SALES_ORDER_TRIGGER])