Dromo is a self-service data file importer that deploys in minutes. Embed in your app or trigger via API to handle csv, xls, xlsx and more.
Go to siteThe Dromo API is a logistics and shipment tracking service that provides real-time data on shipments across carriers. With this API, you can tap into a vast network of shipping information, automate tracking processes, send notifications on shipment updates, and integrate your logistics data with other business systems. On Pipedream, you can create workflows that leverage the Dromo API to connect with various apps, automate shipment tracking updates, and streamline logistics processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
dromo: {
type: "app",
app: "dromo",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.dromo.io/api/v1/uploads/`,
headers: {
"X-Dromo-License-Key": `${this.dromo.$auth.api_key}`,
},
})
},
})
Automated Shipment Tracking Updates: Use the Dromo API on Pipedream to build a workflow that automatically polls for shipment status updates and posts these updates to a Slack channel, keeping your team informed in real-time.
Order Fulfillment Process Integration: Seamlessly integrate the Dromo API with an e-commerce platform like Shopify. Whenever an order is placed, trigger a workflow that creates a shipment in Dromo, then monitors for status changes and updates the order status back in Shopify.
Centralized Logistics Dashboard: Combine the Dromo API with a dashboard tool like Google Sheets or Data Studio on Pipedream. Create a workflow that fetches regular shipment status updates and populates a tracking dashboard, providing an at-a-glance view of all logistics activities.
Dromo uses API keys for authentication. When you connect your Dromo account, Pipedream securely stores the keys so you can easily authenticate to Dromo APIs in both code and no-code steps.