CleverTap is the all-in-one engagement platform that helps brands unlock limitless customer lifetime value
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
CleverTap offers a powerful suite of tools for user engagement and analytics that can help you track user activities, segment users, and run targeted campaigns. Integrating Clevertap with Pipedream allows you to automate interactions with users, synchronize data across platforms, and create personalized marketing strategies. You can trigger workflows with real-time events, analyze user behavior, and leverage Pipedream's ability to connect to hundreds of other apps to enrich and act on your CleverTap data.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
clevertap: {
type: "app",
app: "clevertap",
}
},
async run({steps, $}) {
const data = {
"event_name": `App Launched`,
"from": 20171201,
"to": 20231225,
}
return await axios($, {
method: "post",
url: `https://${this.clevertap.$auth.region}.clevertap.com/1/profiles.json`,
headers: {
"X-CleverTap-Account-Id": `${this.clevertap.$auth.project_id}`,
"X-CleverTap-Passcode": `${this.clevertap.$auth.pass_code}`,
"Content-Type": `application/json`,
},
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}`,
},
})
},
})