Trigger workflows on an interval or cron schedule.
Adds a new subscriber to an EasySendy list. See the documentation
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 EasySendy API interfaces with a flexible email marketing solution, allowing users to manage, segment, and engage with their subscribers efficiently. With Pipedream, you can harness this API to automate your email campaigns, synchronize subscriber lists, or trigger event-based email flows. It's perfect for fine-tuning your email outreach strategy with minimal manual intervention.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
easysendy: {
type: "app",
app: "easysendy",
}
},
async run({steps, $}) {
return await axios($, {
method: "post",
url: `http://api.easysendy.com/ver1/listAPI`,
params: {
"Content-Type": `application/x-www-form-urlencoded`,
api_key: `${this.easysendy.$auth.api_key}`,
req_type: `allLists`,
},
})
},
})