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 record of the selected object type is deleted. See the documentation
Adds an existing contact to an existing campaign. See the documentation
Create a new sales order in Zoho Inventory. See the docs here
Adds an existing lead to an existing campaign. See the documentation
Converts a SOAP XML Object received from Salesforce to JSON
Zoho Inventory API on Pipedream opens the door to smart inventory management by allowing you to integrate with a plethora of apps, automate inventory tracking, and streamline order processing. You can sync your inventory levels across multiple sales channels, automatically update stock quantities, process sales orders, manage returns, and generate detailed reports, all in real-time. With Pipedream's serverless platform, crafting workflows becomes a breeze, letting you focus on scaling your business while reducing manual overhead.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zoho_inventory: {
type: "app",
app: "zoho_inventory",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.zoho_inventory.$auth.api_domain}/inventory/v1/users/me`,
headers: {
"Authorization": `Zoho-oauthtoken ${this.zoho_inventory.$auth.oauth_access_token}`,
},
})
},
})
The Salesforce (REST API) provides a powerful platform for creating and managing customer relationships with a wide array of features like data manipulation, querying, and complex automation. With Pipedream's serverless execution, you can create workflows that automate your sales processes, sync data with other platforms, enhance customer engagement, and trigger actions based on specific events. Dive into Salesforce data, streamline lead management, track customer interactions, and push or pull data to or from Salesforce seamlessly.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
salesforce_rest_api: {
type: "app",
app: "salesforce_rest_api",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.salesforce_rest_api.$auth.instancetype}/services/oauth2/userinfo`,
headers: {
Authorization: `Bearer ${this.salesforce_rest_api.$auth.oauth_access_token}`,
},
})
},
})