Trigger workflows on an interval or cron schedule.
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.
The Campayn API lets you automate email marketing tasks directly within Pipedream. It provides programmatic access to manage contacts, lists, and email campaigns. With Pipedream, you can build serverless workflows to integrate Campayn with other apps and services, triggering actions based on events, scheduling regular email campaigns, or syncing data across platforms.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
campayn: {
type: "app",
app: "campayn",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://campayn.com/api/v1/lists.json`,
headers: {
"Authorization": `TRUEREST apikey=${this.campayn.$auth.api_key}`,
"Content-Type": `application/json`,
},
})
},
})