CleverTap

CleverTap is the all-in-one engagement platform that helps brands unlock limitless customer lifetime value

Integrate the CleverTap API with the Klaviyo API

Setup the CleverTap API trigger to run a workflow which integrates with the Klaviyo API. Pipedream's integration platform allows you to integrate CleverTap and Klaviyo remarkably fast. Free for developers.

Create Or Update User with the CleverTap API

Create or update an user. See the documentation

 
Try it
Add Member To List with the Klaviyo API

Add member to a specific list. See the docs here

 
Try it
Upload Events with the CleverTap API

Upload events. See the documentation

 
Try it
Create New List with the Klaviyo API

Creates a new list in an account. See the docs here

 
Try it
Get Lists with the Klaviyo API

Get a listing of all of the lists in an account. See the docs here

 
Try it

Overview of CleverTap

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.

Connect CleverTap

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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,
    })
  },
})

Overview of Klaviyo

The Klaviyo API grants you the power to automate and personalize your email marketing efforts. With it, you can manage lists, profiles, and campaigns, track event-driven communications, and analyze the results. By leveraging this API on Pipedream, you can create intricate, automated workflows that respond in real-time to your users' behavior, sync data across multiple platforms, and tailor your marketing strategies to improve engagement and conversion rates.

Connect Klaviyo

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    klaviyo: {
      type: "app",
      app: "klaviyo",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: ` https://a.klaviyo.com/api/accounts/`,
      headers: {
        "Authorization": `Klaviyo-API-Key ${this.klaviyo.$auth.api_key}`,
        "revision": `2023-12-15`,
      },
    })
  },
})