Thinkific

Create online courses and membership sites with Thinkific and feel confident that you've got the easiest technology and the best support in the industry.

Integrate the Thinkific API with the Zoom Admin API

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

Create User with Thinkific API on Account Created from Zoom Admin API
Zoom Admin + Thinkific
 
Try it
Enroll User with Thinkific API on Account Created from Zoom Admin API
Zoom Admin + Thinkific
 
Try it
Update User with Thinkific API on Account Created from Zoom Admin API
Zoom Admin + Thinkific
 
Try it
Create User with Thinkific API on Custom Events from Zoom Admin API
Zoom Admin + Thinkific
 
Try it
Create User with Thinkific API on Meeting Started from Zoom Admin API
Zoom Admin + Thinkific
 
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
Lesson Completed (Instant) from the Thinkific API

Emit new event when a user completes a lesson in a course.

 
Try it
Meeting Started from the Zoom Admin API

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

 
Try it
New Full Enrollment (Instant) from the Thinkific API

Emit new event when a user enrolls in your course.

 
Try it
Create User with the Thinkific API

Creates a new user on Thinkific. See the documentation

 
Try it
Enroll User with the Thinkific API

Creates a new Enrollment for specified student in specified course. See the documentation

 
Try it
Update User with the Thinkific API

Updates the information of a specific user on Thinkific. See the documentation

 
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 Thinkific

Thinkific's API opens a treasure trove of possibilities for automating and enhancing the e-learning experience. It provides programmatic access to your Thinkific site, allowing you to manage courses, users, enrollments, and more. With Pipedream's serverless platform, you can connect Thinkific to a multitude of other applications, automate tasks, sync data across various services, and trigger workflows based on specific events, all without writing a line of server code.

Connect Thinkific

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    thinkific: {
      type: "app",
      app: "thinkific",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.thinkific.com/api/public/v1/courses`,
      headers: {
        "X-Auth-API-Key": `${this.thinkific.$auth.api_key}`,
        "X-Auth-Subdomain": `${this.thinkific.$auth.subdomain}`,
        "Content-Type": `application/json`,
      },
    })
  },
})

Overview of Zoom Admin

The Zoom Admin API lets you harness the extensive capabilities of Zoom for automation and integration, right within Pipedream. Automate user management, track Zoom rooms, monitor webinars and meetings, and customize your workflow to respond dynamically to events like new participants or ended meetings. With these APIs and the power of Pipedream, you can streamline administrative tasks, extract valuable insights, and sync Zoom activities with other services.

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