Campayn.com is the easiest way to create, send and track email marketing campaigns.
Go to siteThe Campayn API lets you automate email marketing tasks directly within Pipedream. It provides programmatic access to manage contacts, lists, and email campaigns. With Pipedream, you can build serverless workflows to integrate Campayn with other apps and services, triggering actions based on events, scheduling regular email campaigns, or syncing data across platforms.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
campayn: {
type: "app",
app: "campayn",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://campayn.com/api/v1/lists.json`,
headers: {
"Authorization": `TRUEREST apikey=${this.campayn.$auth.api_key}`,
"Content-Type": `application/json`,
},
})
},
})
Automate Contact Syncing: Create a workflow that synchronizes contacts between Campayn and your CRM system. Whenever a new contact is added in your CRM, the workflow can automatically add or update the contact in your designated Campayn list.
Email Campaign Triggered by E-Commerce Events: Set up a workflow that sends targeted email campaigns through Campayn when a customer makes a purchase, abandons a cart, or performs a significant action on your e-commerce platform.
Periodic Campaign Performance Reports: Develop a workflow that fetches campaign performance data from Campayn on a regular basis and compiles it into a report using Google Sheets or a data visualization tool, then sends the report via email or Slack to your marketing team.
Campayn uses API keys for authentication. When you connect your Campayn account, Pipedream securely stores the keys so you can easily authenticate to Campayn APIs in both code and no-code steps.
To get your API Key, sign in to your Campayn dashboard then click on Settings in the left menu. The API Key is displayed inside the Account page.