DEAR Inventory is a comprehensive inventory control application positioned as a complete back end management system with product planning, cost and development, manufacturing, sales, shipping and payment features.
Go to siteDEAR Systems offers an API that provides programmatic access to its inventory management platform, allowing for seamless integration with other apps for automating various business processes. Leveraging this API within Pipedream, you can create custom workflows to synchronize inventory levels, manage sales and purchase orders, and automate financial reporting among other tasks. By connecting DEAR Systems to Pipedream’s vast array of supported apps, you can achieve a high degree of automation, reducing manual entry and data errors, and gaining insights from real-time data processing.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
dear: {
type: "app",
app: "dear",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://inventory.dearsystems.com/ExternalApi/v2/me`,
headers: {
"api-auth-accountid": `${this.dear.$auth.account_id}`,
"api-auth-applicationkey": `${this.dear.$auth.application_key}`,
},
})
},
})
Inventory Level Sync with Shopify: When stock levels change in DEAR Systems, trigger a workflow that updates the corresponding inventory quantities in Shopify. This ensures that your online storefront reflects accurate stock information, preventing overselling and enhancing customer trust.
Automated Purchase Order Processing: Automatically create purchase orders in DEAR Systems when your stock falls below a certain threshold. This workflow can be triggered by low inventory alerts and can also notify suppliers or internal teams via email or messaging apps like Slack.
Financial Reporting to Google Sheets: Consolidate financial data from DEAR Systems into a Google Sheets spreadsheet at regular intervals. This can help maintain up-to-date financial records for review and analysis, enabling businesses to keep an eye on cash flow, profit margins, and other critical financial metrics.
Emit new event when a purchase order is created and authorized
Emit new event when a sale order is created and authorized
Emit new event when a sale quote is created and authorized
Emit new event when the available stock level changes. See the documentation
Emit new event when a customer is updated. See the documentation
DEAR Systems uses API keys for authentication. When you connect your DEAR Systems account, Pipedream securely stores the keys so you can easily authenticate to DEAR Systems APIs in both code and no-code steps.
To use the API you will need your DEAR Account ID and API Application key. These can be created on the API setup page inside DEAR Inventory application.