Google Analytics

Google Analytics enables you to measure and report on user activity on websites, web and mobile apps, and internet-connected devices.

Integrate the Google Analytics API with the Zoom Admin API

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

Create GA4 Property with Google Analytics API on Account Created from Zoom Admin API
Zoom Admin + Google Analytics
 
Try it
Run Report in GA4 with Google Analytics API on Account Created from Zoom Admin API
Zoom Admin + Google Analytics
 
Try it
Run Report with Google Analytics API on Account Created from Zoom Admin API
Zoom Admin + Google Analytics
 
Try it
Create GA4 Property with Google Analytics API on Custom Events from Zoom Admin API
Zoom Admin + Google Analytics
 
Try it
Create GA4 Property with Google Analytics API on Meeting Started from Zoom Admin API
Zoom Admin + Google Analytics
 
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
New Page Opened from the Google Analytics API

Emit new event when a page is viewed

 
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
Create GA4 Property with the Google Analytics API

Creates a new GA4 property. See the documentation

 
Try it
Run Report with the Google Analytics API

Return report metrics based on a start and end date. See the docs here

 
Try it
Run Report in GA4 with the Google Analytics API

Returns a customized report of your Google Analytics event data. Reports contain statistics derived from data collected by the Google Analytics tracking code. See the documentation here

 
Try it
Add meeting registrant with the Zoom Admin API

Register a participant for a meeting. See the docs here

 
Try it
Add webinar panelist with the Zoom Admin API

Register a panelist for a webinar. See the docs here

 
Try it

Overview of Google Analytics

The Google Analytics API lets you access data from your Google Analytics
account to build custom reports and dashboards. With the API, you can query
data from your account, customize the data returned, and access data in real
time.

Here are some examples of what you can build with the Google Analytics API:

  • A dashboard to track your website's traffic
  • A report to show which keywords are driving traffic to your website
  • A tool to track how users are interacting with your website
  • A report to show which browsers and devices are being used to access your
    website
  • A tool to track conversions and goal completions on your website

Connect Google Analytics

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: {
    google_analytics: {
      type: "app",
      app: "google_analytics",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://www.googleapis.com/oauth2/v1/userinfo`,
      headers: {
        Authorization: `Bearer ${this.google_analytics.$auth.oauth_access_token}`,
      },
    })
  },
})

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}`,
      },
    })
  },
})