with Shipengine and Mollie?
Emit new event when a new label is shipped. See the docs
Emit new event when a new event is tracked. See the docs
By default, all labels are returned, 25 at a time, starting with the most recently created ones. You can combine multiple filter options to narrow-down the results. See the docs
Allows you to subscribe to tracking updates for a package. See the docs
Address validation ensures accurate addresses and can lead to reduced shipping costs by preventing address correction surcharges. See the docs
The Shipengine API enables robust automation possibilities for shipping logistics. From label creation, rate comparison, to tracking shipments, the API provides the tools to streamline e-commerce and shipping workflows. By harnessing Shipengine's capabilities through Pipedream, you can build seamless integrations that connect your shipping operations with other business processes, enhancing efficiency and reducing manual overhead.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
shipengine: {
type: "app",
app: "shipengine",
}
},
async run({steps, $}) {
return await axios($, {
method: "post",
url: `https://api.shipengine.com/v1/addresses/validate`,
headers: {
"API-Key": `${this.shipengine.$auth.api_key}`,
"Content-Type": `application/json`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
mollie: {
type: "app",
app: "mollie",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.mollie.com/v2/payments`,
headers: {
Authorization: `Bearer ${this.mollie.$auth.api_key}`,
},
})
},
})