ChartMogul

Subscription Analytics and Revenue Reporting

Integrate the ChartMogul API with the Zoom Admin API

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

Add Custom Attributes To Customer Via Email with ChartMogul API on Account Created from Zoom Admin API
Zoom Admin + ChartMogul
 
Try it
Add Custom Attributes To Customer Via UUID with ChartMogul API on Account Created from Zoom Admin API
Zoom Admin + ChartMogul
 
Try it
Add Tags To Customer Via Email with ChartMogul API on Account Created from Zoom Admin API
Zoom Admin + ChartMogul
 
Try it
Add Tags To Customer Via UUID with ChartMogul API on Account Created from Zoom Admin API
Zoom Admin + ChartMogul
 
Try it
Create Customer with ChartMogul API on Account Created from Zoom Admin API
Zoom Admin + ChartMogul
 
Try it
Account Created from the Zoom Admin API

Emits an event each time a sub-account is created in your master account

 
Try it
Custom Events from the Zoom Admin API

Listen for any events tied to your Zoom account

 
Try it
Meeting Started from the Zoom Admin API

Emits an event each time a meeting starts in your Zoom account

 
Try it
Account Updated from the Zoom Admin API

Emits an event each time your master account or sub-account profile is updated

 
Try it
Recording Completed from the Zoom Admin API

Emits an event each time a recording is ready for viewing in your Zoom account

 
Try it
Add Custom Attributes To Customer Via Email with the ChartMogul API

Adds custom attributes to customers that have the specified email address. See the docs here

 
Try it
Add Custom Attributes To Customer Via UUID with the ChartMogul API

Adds custom attributes to a given customer. See the docs here

 
Try it
Add Tags To Customer Via Email with the ChartMogul API

Adds tags to customers that have the specified email address. See the docs here

 
Try it
Add Tags To Customer Via UUID with the ChartMogul API

Adds tags to a given customer. See the docs here

 
Try it
Create Customer with the ChartMogul API

Creates a customer object in ChartMogul under the specified data_source See the docs here

 
Try it

Overview of ChartMogul

With the ChartMogul API, you can build a variety of applications and
integrations to help you better understand and manage your customer data. Here
are some examples of what you can build:

  • A dashboard to visualize your customer data
  • An integration with your billing system to automatically import customer data
  • A tool to help you segment your customers based on their data
  • A customer churn prediction tool
  • A customer lifetime value calculation tool

Connect ChartMogul

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: {
    chartmogul: {
      type: "app",
      app: "chartmogul",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.chartmogul.com/v1/ping`,
      auth: {
        username: `${this.chartmogul.$auth.account_token}`,
        password: `${this.chartmogul.$auth.secret_key}`,
      },
    })
  },
})

Connect Zoom Admin

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    zoom_admin: {
      type: "app",
      app: "zoom_admin",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.zoom.us/v2/users/me`,
      headers: {
        Authorization: `Bearer ${this.zoom_admin.$auth.oauth_access_token}`,
      },
    })
  },
})