with Monta and Schedule?
Get an order by ID. See the documentation
Get a return by ID. See the documentation
List order events for an order. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
monta: {
type: "app",
app: "monta",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api-v6.monta.nl/health`,
auth: {
username: `${this.monta.$auth.username}`,
password: `${this.monta.$auth.password}`,
},
})
},
})
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.