Inventory Management | Online Inventory Software
Emit new event for each message posted to one or more channels in a Discord server
Emit new event each time a new contact is created in Zoho Inventory
Emit new event for each command posted to one or more channels in a Discord server
Emit new event each time a new invoice 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}`,
},
})
},
})
The Pipedream Discord app enables you to build event-driven workflows that interact with the Discord API. When you authorize the Pipedream app's access to your guilds, you can use Pipedream workflows to perform common Discord actions, or write your own code against the Discord API.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
discord: {
type: "app",
app: "discord",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://discord.com/api/users/@me`,
headers: {
Authorization: `Bearer ${this.discord.$auth.oauth_access_token}`,
"accept": `application/json`,
},
})
},
})