Inventory Management | Online Inventory Software
Emit new event each time a new contact is created in Zoho Inventory
Emit new event each time a new invoice is created in Zoho Inventory
Emit new event each time a new item is created in Zoho Inventory
Emit new event each time a new sales order is created in 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:
With the Zoho Inventory API, you can create the following applications:
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}`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})