Zoho Inventory

Inventory Management | Online Inventory Software

Integrate the Zoho Inventory API with the Node API

Setup the Zoho Inventory API trigger to run a workflow which integrates with the Node API. Pipedream's integration platform allows you to integrate Zoho Inventory and Node remarkably fast. Free for developers.

Run Node Code with Node API on New Contact from Zoho Inventory API
Zoho Inventory + Node
 
Try it
Run Node Code with Node API on New Invoice from Zoho Inventory API
Zoho Inventory + Node
 
Try it
Run Node Code with Node API on New Item from Zoho Inventory API
Zoho Inventory + Node
 
Try it
Run Node Code with Node API on New Sales Order from Zoho Inventory API
Zoho Inventory + Node
 
Try it
New Contact from the Zoho Inventory API

Emit new event each time a new contact is created in Zoho Inventory

 
Try it
New Invoice from the Zoho Inventory API

Emit new event each time a new invoice is created in Zoho Inventory

 
Try it
New Item from the Zoho Inventory API

Emit new event each time a new item is created in Zoho Inventory

 
Try it
New Sales Order from the Zoho Inventory API

Emit new event each time a new sales order is created in Zoho Inventory

 
Try it
Create Contact with the Zoho Inventory API

Create a new contact in Zoho Inventory. See the docs here

 
Try it
Run Node Code with the Node API

Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.

 
Try it
Create Sales Order with the Zoho Inventory API

Create a new sales order in Zoho Inventory. See the docs here

 
Try it

Overview of Zoho Inventory

The Zoho Inventory API gives developers the ability to build innovative and
dynamic applications that enable businesses to manage the selling, buying, and
organizing of inventory. With this API, developers can tailor their
applications with the features to enable businesses to make the most of their
inventory.

The Zoho Inventory API has many features, including:

  • Creation and management of vendors, customers, and items
  • Ability to keep track of inventory stock in warehouses, sale orders, and
    purchase orders
  • Automation of sales, purchases, and warehousing operations
  • Ability to manage taxes, currency exchange rates, ships, carriers, and more
  • Access to real-time reports on sale and purchase orders

With the Zoho Inventory API, you can create the following applications:

  • Customized e-commerce website for customers
  • Inventory management system for warehouses
  • Dynamic order processing and invoicing system
  • Automated purchasing system for vendors
  • Robust billing system for customers
  • Mobile app for sales and inventory tracking
  • Real-time reporting system for analyzing sales and purchases
  • Comprehensive e-commerce platform that integrates with other apps

Connect Zoho Inventory

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    zoho_inventory: {
      type: "app",
      app: "zoho_inventory",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://inventory.${this.zoho_inventory.$auth.base_api_uri}/api/v1/users/me`,
      headers: {
        "Authorization": `Zoho-oauthtoken ${this.zoho_inventory.$auth.oauth_access_token}`,
      },
      params: {
        organization_id: `${this.zoho_inventory.$auth.organization_id}`,
      },
    })
  },
})

Connect Node

1
2
3
4
5
6
7
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
  async run({ steps, $ }) {
    // Return data to use it in future steps
    return steps.trigger.event
  },
})

Community Posts

Automate checking a ticket system's availability with Node.js and Pipedream
Automate checking a ticket system's availability with Node.js and Pipedream
How I used Node.js and Pipedream to automatically scrape a ticket booking site and notify me if availability had changed.