with Builderall Mailingboss and Membership.io?
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}`,
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
membership_io: {
type: "app",
app: "membership_io",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.membership.io/api/v2/me`,
headers: {
Authorization: `Bearer ${this.membership_io.$auth.oauth_access_token}`,
},
})
},
})