The all-in-one online business platform that gives you every marketing & sales tool you need to grow your business profitably & more đ
Allows you to add one or more email addresses to the global suppressions group. See the docs here
Allows you to create a new contact list. See the docs here
Allows you to delete all email addresses on your blocks list. See the docs here
The Kartra API allows you to interact programmatically with Kartra's marketing automation platform. Through Pipedream, you can leverage this API to create, update, retrieve, and delete various marketing and sales assets managed by Kartra, such as leads, emails, memberships, and more. By integrating Kartra with other apps on Pipedream, you can automate complex workflows, sync data across multiple platforms, and trigger actions based on events within Kartra or external services.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
kartra: {
type: "app",
app: "kartra",
}
},
async run({steps, $}) {
const data = {
"app_id": `${this.kartra.$auth.app_id}`,
"api_key": `${this.kartra.$auth.api_key}`,
"api_password": `${this.kartra.$auth.api_password}`,
"lead": {
"email": "enter_an_email_here"
},
"actions": [
{
"cmd": "search_lead"
}
],
}
return await axios($, {
method: "post",
url: `https://app.kartra.com/api`,
headers: {
"Content-Type": `application/x-www-form-urlencoded`,
},
data,
})
},
})
The Twilio SendGrid API opens up a world of possibilities for email automation, enabling you to send emails efficiently and track their performance. With this API, you can programmatically create and send personalized email campaigns, manage contacts, and parse inbound emails for data extraction. When you harness the power of Pipedream, you can connect SendGrid to hundreds of other apps to automate workflows, such as triggering email notifications based on specific actions, syncing email stats with your analytics, or handling incoming emails to create tasks or tickets.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sendgrid: {
type: "app",
app: "sendgrid",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.sendgrid.com/v3/user/account`,
headers: {
Authorization: `Bearer ${this.sendgrid.$auth.api_key}`,
},
})
},
})