CleverTap is the all-in-one engagement platform that helps brands unlock limitless customer lifetime value
Go to siteCleverTap 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,
})
},
})
User Segmentation and Email Campaigns: Synchronize CleverTap segments to an email marketing service like Mailchimp using Pipedream. When a new segment is created in CleverTap, automatically add these users to Mailchimp and trigger a tailored email campaign.
Real-Time User Activity Alerts: Send instant notifications to Slack when a high-value user performs a specific action in your app. Pipedream can listen for CleverTap webhook events and post messages to a Slack channel, keeping your team updated on critical user engagements.
Automated User Onboarding: Create a workflow where new users added to CleverTap trigger a series of welcome messages via Twilio. Pipedream can capture the event, and use Twilio to send SMS or WhatsApp messages, making the onboarding process smooth and personal.
CleverTap uses API keys for authentication. When you connect your CleverTap account, Pipedream securely stores the keys so you can easily authenticate to CleverTap APIs in both code and no-code steps.