with Dromo and Planhat?
The 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}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
planhat: {
type: "app",
app: "planhat",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.planhat.com/users`,
headers: {
Authorization: `Bearer ${this.planhat.$auth.api_key}`,
},
})
},
})