with HeyLibby and Builderall Mailingboss?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
heylibby: {
type: "app",
app: "heylibby",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://3wsq3v2kgg.execute-api.us-east-1.amazonaws.com/prod/zapier/trigger`,
params: {
zapierAPI: `${this.heylibby.$auth.api_key}`,
},
})
},
})
The Builderall Mailingboss API empowers you to automate your email marketing operations via Pipedream. You can create, update, and manage contacts and email lists, trigger email campaigns, and analyze campaign performance directly through API calls. Integrating these capabilities within Pipedream’s serverless platform enables you to connect Mailingboss with hundreds of other apps, streamlining your marketing workflows and data management.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
builderall_mailingboss: {
type: "app",
app: "builderall_mailingboss",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://member.mailingboss.com/integration/index.php/lists/${this.builderall_mailingboss.$auth.api_key}`,
})
},
})