Full-featured self-hosted email marketing software.
Emit new event when an automation run has finished running. See the documentation
Triggers a pre-built automation by providing the scraper ID. See the documentation
Mailwizz offers a potent API that enables automation of email marketing tasks, subscriber management, campaign tracking, and more. Using Pipedream, you can harness this API to create custom workflows that trigger on specific events, process data, or synchronize with other apps. Pipedream's serverless architecture allows you to handle workflows at scale without managing infrastructure.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
mailwizz: {
type: "app",
app: "mailwizz",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.mailwizz.$auth.url}/lists`,
headers: {
"X-API-KEY": `${this.mailwizz.$auth.api_key}`,
},
})
},
})
The Browserhub API offers automation and control over browser sessions, enabling users to create, manipulate, and extract data from web pages programmatically. Integrating Browserhub with Pipedream opens a world of possibilities for automating web interaction workflows, monitoring website changes, scraping data, and testing web applications. Pipedream's serverless platform allows for easy orchestration of API calls and data handling, making it a powerful tool for developers to harness the capabilities of Browserhub in a scalable and efficient manner.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
browserhub: {
type: "app",
app: "browserhub",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.browserhub.io/v1/status`,
headers: {
Authorization: `Bearer ${this.browserhub.$auth.api_key}`,
},
})
},
})