Zoho Inventory integration
Zoho Inventory helps businesses track stock, manage orders, and sync inventory…
- Provider
- zoho_inventory
- Category
- Other
- Setup
- One-click OAuth (we host the OAuth app)
- Actions
- 58 available
Quick start
Call Zoho Inventory from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Zoho Inventory's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.
// In your generated app's worker handler:
const composio = composioClient(env);
const result = await composio.execute(
"ZOHO_INVENTORY_ACTION_NAME",
{ /* action parameters — see Actions section below */ }
);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" }
});
Replace ACTION_NAME with one of the slugs listed in
the Actions section below. The composio client handles auth +
rate limits automatically — no API key is exposed to user code.
Setup
OverSkill hosts the OAuth application for Zoho Inventory. End-users click Connect on the integration card in your app, complete the OAuth flow with Zoho Inventory, and OverSkill stores the access token scoped to their account. No client_id / client_secret configuration needed on your side.
Supported auth schemes: OAUTH2.
Available actions
58 actions exposed via the
Zoho Inventory integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
ZOHO_INVENTORY_ADD_CREDIT_NOTE_COMMENT -
ZOHO_INVENTORY_ADD_INVOICE_ATTACHMENT -
ZOHO_INVENTORY_ADD_INVOICE_COMMENT -
ZOHO_INVENTORY_APPLY_CREDITS_TO_INVOICES -
ZOHO_INVENTORY_BULK_DELETE_SALES_ORDERS -
ZOHO_INVENTORY_BULK_EMAIL_INVOICES -
ZOHO_INVENTORY_BULK_EXPORT_INVOICES -
ZOHO_INVENTORY_BULK_PRINT_INVOICES -
ZOHO_INVENTORY_BULK_PRINT_PACKAGES -
ZOHO_INVENTORY_CANCEL_INVOICE_WRITE_OFF -
ZOHO_INVENTORY_CREATE_BILL -
ZOHO_INVENTORY_CREATE_CONTACT
Show all 58 actions
-
ZOHO_INVENTORY_CREATE_CONTACT_PERSON -
ZOHO_INVENTORY_CREATE_CREDIT_NOTE -
ZOHO_INVENTORY_CREATE_CUSTOMER_PAYMENT -
ZOHO_INVENTORY_CREATE_INVOICE -
ZOHO_INVENTORY_CREATE_ITEM -
ZOHO_INVENTORY_CREATE_ITEM_GROUP -
ZOHO_INVENTORY_CREATE_PACKAGE -
ZOHO_INVENTORY_CREATE_PURCHASE_ORDER -
ZOHO_INVENTORY_CREATE_SALES_ORDER -
ZOHO_INVENTORY_DEACTIVATE_CONTACT -
ZOHO_INVENTORY_DEACTIVATE_ITEM -
ZOHO_INVENTORY_DEACTIVATE_ITEM_GROUP -
ZOHO_INVENTORY_DELETE_COMPOSITE_ITEM -
ZOHO_INVENTORY_DELETE_CONTACT -
ZOHO_INVENTORY_DELETE_CONTACT_PERSON -
ZOHO_INVENTORY_DELETE_INVOICE -
ZOHO_INVENTORY_DELETE_INVOICE_ATTACHMENT -
ZOHO_INVENTORY_DELETE_INVOICE_COMMENT -
ZOHO_INVENTORY_DELETE_ITEM -
ZOHO_INVENTORY_DELETE_ITEM_GROUP -
ZOHO_INVENTORY_DELETE_ITEM_IMAGE -
ZOHO_INVENTORY_DELETE_PACKAGE -
ZOHO_INVENTORY_DELETE_SALES_ORDER -
ZOHO_INVENTORY_DISABLE_PAYMENT_REMINDER -
ZOHO_INVENTORY_EMAIL_CONTACT -
ZOHO_INVENTORY_EMAIL_CONTACT_STATEMENT -
ZOHO_INVENTORY_EMAIL_CREDIT_NOTE -
ZOHO_INVENTORY_EMAIL_INVOICE -
ZOHO_INVENTORY_ENABLE_INVOICE_PAYMENT_REMINDER -
ZOHO_INVENTORY_GET_CONTACT -
ZOHO_INVENTORY_GET_CONTACT_ADDRESS -
ZOHO_INVENTORY_GET_CREDIT_NOTE -
ZOHO_INVENTORY_GET_CREDIT_NOTE_EMAIL_CONTENT -
ZOHO_INVENTORY_GET_CURRENT_USER -
ZOHO_INVENTORY_GET_SALES_ORDER -
ZOHO_INVENTORY_LIST_BILLS -
ZOHO_INVENTORY_LIST_CONTACTS -
ZOHO_INVENTORY_LIST_CREDIT_NOTES -
ZOHO_INVENTORY_LIST_CURRENCIES -
ZOHO_INVENTORY_LIST_INVOICE_PAYMENTS -
ZOHO_INVENTORY_LIST_INVOICES -
ZOHO_INVENTORY_LIST_ITEM_GROUPS -
ZOHO_INVENTORY_LIST_ITEMS -
ZOHO_INVENTORY_LIST_ORGANIZATIONS -
ZOHO_INVENTORY_LIST_PURCHASE_ORDERS -
ZOHO_INVENTORY_LIST_SALES_ORDERS
Build with Zoho Inventory
Open OverSkill, describe what you want to build, and reference Zoho Inventory in your prompt — the AI will wire up the integration automatically.