with Remarkety and Maileroo?
The Remarkety API lets you automate your email marketing campaigns by leveraging customer data. With it, you can build workflows that trigger personalized emails based on shopping behavior and customer profiles. Remarkety's API on Pipedream is a powerhouse for creating dynamic, data-driven marketing strategies by connecting various apps to orchestrate complex workflows, such as syncing customer data, segmenting audiences, or triggering targeted campaigns.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
remarkety: {
type: "app",
app: "remarkety",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.remarkety.com/api/v2/stores/${this.remarkety.$auth.store_id}/customers`,
headers: {
"X-API-Key": `${this.remarkety.$auth.api_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
maileroo: {
type: "app",
app: "maileroo",
}
},
async run({steps, $}) {
const data = {
"api_key": `${this.maileroo.$auth.api_key}`,
"email_address": `sergio@pipedream.com`,
}
return await axios($, {
method: "post",
url: `https://verify.maileroo.net/check`,
data,
})
},
})