with WICS and Schedule?
Get an order by its additional reference. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
wics: {
type: "app",
app: "wics",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.wics.$auth.environment}servicelayer.wics.nl/api/login`,
auth: {
username: `${this.wics.$auth.api_key}`,
password: `${this.wics.$auth.api_secret}`,
},
})
},
})
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.