Create Item
Create a new item in Zoho Inventory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_ITEM])
Update Item
Update an existing item's details in Zoho Inventory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_ITEM])
Delete Item
Delete an item from Zoho Inventory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DELETE_ITEM])
Create Sales Order
Create a new sales order in Zoho Inventory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_SALES_ORDER])
Update Sales Order
Update an existing sales order in Zoho Inventory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_SALES_ORDER])
Create Purchase Order
Create a new purchase order in Zoho Inventory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_PURCHASE_ORDER])
Update Purchase Order
Update an existing purchase order in Zoho Inventory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_PURCHASE_ORDER])
Create Invoice
Create a new invoice in Zoho Inventory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_INVOICE])
Update Invoice
Update an existing invoice in Zoho Inventory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_INVOICE])
Create Bill
Create a new bill in Zoho Inventory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_BILL])
Update Bill
Update an existing bill in Zoho Inventory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.UPDATE_BILL])
Adjust Inventory
Adjust the quantity of an item in inventory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADJUST_INVENTORY])
Create Shipment
Create a new shipment for a sales order in Zoho Inventory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_SHIPMENT])
New Item Created
Triggered when a new item is created in Zoho Inventory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_ITEM_CREATED])
Item Updated
Triggered when an item's details are updated in Zoho Inventory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ITEM_UPDATED])
New Sales Order Created
Triggered when a new sales order is created in Zoho Inventory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_SALES_ORDER_CREATED])
Sales Order Updated
Triggered when a sales order is updated in Zoho Inventory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SALES_ORDER_UPDATED])
New Purchase Order Created
Triggered when a new purchase order is created in Zoho Inventory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_PURCHASE_ORDER_CREATED])
Purchase Order Updated
Triggered when a purchase order is updated in Zoho Inventory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.PURCHASE_ORDER_UPDATED])
New Invoice Created
Triggered when a new invoice is created in Zoho Inventory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_INVOICE_CREATED])
Invoice Updated
Triggered when an invoice is updated in Zoho Inventory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.INVOICE_UPDATED])
New Bill Created
Triggered when a new bill is created in Zoho Inventory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NEW_BILL_CREATED])
Bill Updated
Triggered when a bill is updated in Zoho Inventory
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.BILL_UPDATED])
Low Stock Alert
Triggered when an item's stock falls below a specified threshold
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.LOW_STOCK_ALERT])
Payment Received
Triggered when a payment is received for an invoice
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.PAYMENT_RECEIVED])
Shipment Created
Triggered when a new shipment is created for a sales order
from composio_crewai import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SHIPMENT_CREATED])