Trigger workflows on an interval or cron schedule.
Creates or updates a contact based on email address within Flexmail. See the documentation
Adds a contact to an interest area. See the documentation
Performs unsubscribe operation for a contact. 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.
Flexmail API offers a way to automate your email marketing campaigns by allowing you to manage contacts, send out emails, and track results. With Pipedream's ability to integrate with hundreds of services, you can set up complex workflows that respond to events from various apps by updating contact lists, sending personalized content, or triggering sequences of marketing actions based on user behavior or data changes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
flexmail: {
type: "app",
app: "flexmail",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.flexmail.eu`,
auth: {
username: `${this.flexmail.$auth.account_id}`,
password: `${this.flexmail.$auth.personal_access_token}`,
},
})
},
})