with npm and Dachser?
Emit new event with the latest count of downloads for an npm package. See the documentation
Emit new event when a new version of an npm package is published. See the documentation
Retrieve the delivery order status using reference and customer details. See the documentation
Retrieve the full history for a shipment by tracking number and customer ID. See the documentation
Retrieve the current status for a shipment by tracking number and customer ID. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
dachser: {
type: "app",
app: "dachser",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api-gateway.dachser.com/rest/v2/incominggoodsdocuments?date=2027-10-01`,
headers: {
"accept": `application/json`,
"x-api-key": `${this.dachser.$auth.api_token}`,
},
})
},
})