Trigger workflows on an interval or cron schedule.
With Schedule - A trigger provided by Pipedream - You can easily build
automated workflows that run on regular times or intervals. Some examples of
things that you can build using the Schedule API include:
With the IFTTT API, you can build a wide variety of applications and
integrations. Here are just a few examples:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
ifttt: {
type: "app",
app: "ifttt",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://connect.ifttt.com//v2/me`,
headers: {
"IFTTT-Service-Key": `${this.ifttt.$auth.ifttt_Service_Key}`,
},
})
},
})