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
Emit new event when a new file is created in OpenAI. See the documentation
The Chat API, using the gpt-3.5-turbo
or gpt-4
model. See docs here
Create a new sales order in Zoho Inventory. See the docs here
Classify items into specific categories using the Chat API
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}`,
},
})
},
})
The OpenAI API is a powerful tool that provides access to a range of
high-powered machine learning models. With the OpenAI API, developers can
create products, services, and tools that enable humanizing AI experiences, and
build applications that extend the power of human language.
Using the OpenAI API, developers can create language-driven applications such
as:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
openai: {
type: "app",
app: "openai",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.openai.com/v1/models`,
headers: {
Authorization: `Bearer ${this.openai.$auth.api_key}`,
},
})
},
})