Email Marketing platform for agencies and makers - unlimited brands/users, all email campaign types, support when you need it.
Creates or updates a contact within a brand. See the documentation
Sends an email as part of a transactional campaign. See the documentation
The BigMailer API enables you to automate your email marketing by interacting with your BigMailer account programmatically. On Pipedream, you can leverage this API to create workflows that respond to events, manage contacts, campaigns, and analyze the effectiveness of your email strategies. By connecting BigMailer to other apps on Pipedream, you can orchestrate complex automations and streamline your email operations.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
bigmailer: {
type: "app",
app: "bigmailer",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.bigmailer.io/v1/me`,
headers: {
"Accept": `application/json`,
"X-API-Key": `${this.bigmailer.$auth.api_key}`,
},
})
},
})
The Typeform API furnishes you with the means to create dynamic forms and collect user responses in real-time. By leveraging this API within Pipedream's serverless platform, you can automate workflows to process this data, integrate seamlessly with other services, and react to form submissions instantaneously. This empowers you to craft tailored responses, synchronize with databases, trigger email campaigns, or even manage event registrations without manual intervention.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
typeform: {
type: "app",
app: "typeform",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.typeform.com/me`,
headers: {
Authorization: `Bearer ${this.typeform.$auth.oauth_access_token}`,
},
})
},
})