Create Invoice
Creates a new invoice in Zoho Billing
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_INVOICE])
Update Invoice
Updates an existing invoice in Zoho Billing
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_INVOICE])
Delete Invoice
Deletes an invoice from Zoho Billing
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DELETE_INVOICE])
Create Customer
Adds a new customer to Zoho Billing
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_CUSTOMER])
Update Customer
Updates an existing customer's information in Zoho Billing
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_CUSTOMER])
Create Item
Adds a new item or service to Zoho Billing
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_ITEM])
Update Item
Updates an existing item or service in Zoho Billing
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_ITEM])
Create Estimate
Creates a new estimate in Zoho Billing
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_ESTIMATE])
Convert Estimate To Invoice
Converts an existing estimate to an invoice in Zoho Billing
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CONVERT_ESTIMATE_TO_INVOICE])
Record Payment
Records a payment for an invoice in Zoho Billing
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.RECORD_PAYMENT])
Create Credit Note
Creates a new credit note in Zoho Billing
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_CREDIT_NOTE])
Apply Credit Note
Applies an existing credit note to an invoice in Zoho Billing
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.APPLY_CREDIT_NOTE])
Create Recurring Invoice
Sets up a new recurring invoice in Zoho Billing
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_RECURRING_INVOICE])
Stop Recurring Invoice
Stops an active recurring invoice in Zoho Billing
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.STOP_RECURRING_INVOICE])
Generate Statement
Generates a statement for a customer in Zoho Billing
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.GENERATE_STATEMENT])
New Invoice Created
Triggers when a new invoice is created in Zoho Billing
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_INVOICE_CREATED])
Invoice Paid
Triggers when an invoice is marked as paid in Zoho Billing
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.INVOICE_PAID])
Invoice Overdue
Triggers when an invoice becomes overdue in Zoho Billing
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.INVOICE_OVERDUE])
New Customer Added
Triggers when a new customer is added to Zoho Billing
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_CUSTOMER_ADDED])
Estimate Created
Triggers when a new estimate is created in Zoho Billing
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ESTIMATE_CREATED])
Estimate Accepted
Triggers when an estimate is accepted by a customer in Zoho Billing
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ESTIMATE_ACCEPTED])
Credit Note Issued
Triggers when a new credit note is issued in Zoho Billing
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREDIT_NOTE_ISSUED])
Recurring Invoice Generated
Triggers when a recurring invoice is generated in Zoho Billing
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.RECURRING_INVOICE_GENERATED])
Payment Received
Triggers when a payment is received and recorded in Zoho Billing
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.PAYMENT_RECEIVED])
Item Low Stock
Triggers when an item's stock falls below a specified threshold in Zoho Billing
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ITEM_LOW_STOCK])
Customer Credit Limit Reached
Triggers when a customer reaches their credit limit in Zoho Billing
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CUSTOMER_CREDIT_LIMIT_REACHED])
Invoice Viewed By Customer
Triggers when a customer views an invoice in Zoho Billing
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.INVOICE_VIEWED_BY_CUSTOMER])
Refund Issued
Triggers when a refund is issued to a customer in Zoho Billing
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.REFUND_ISSUED])
Expense Recorded
Triggers when a new expense is recorded in Zoho Billing
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.EXPENSE_RECORDED])
Tax Rate Changed
Triggers when a tax rate is changed in Zoho Billing
from composio_llamaindex import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TAX_RATE_CHANGED])