Email Marketing Platform. Helping clients connect, create and cultivate exceptional email marketing experiences.
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
mailblaze: {
type: "app",
app: "mailblaze",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://control.mailblaze.com/api/general`,
headers: {
"Accept": `application/json`,
"Authorization": `${this.mailblaze.$auth.api_key}`,
},
params: {
fields: `account_name,total_subscribers`,
},
data,
})
},
})
Adds a new subscriber to your mailing list. See the documentation
Updates information for an existing subscriber in your mailing list. See the documentation
MailBlaze uses API keys for authentication. When you connect your MailBlaze account, Pipedream securely stores the keys so you can easily authenticate to MailBlaze APIs in both code and no-code steps.