Zoom Admin

Video conferencing (includes account-level scopes) for Zoom Admins.

Integrate the Zoom Admin API with the Twitch API

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

Block User with Twitch API on Account Created from Zoom Admin API
Zoom Admin + Twitch
 
Try it
Check Channel Subscription with Twitch API on Account Created from Zoom Admin API
Zoom Admin + Twitch
 
Try it
Delete Video with Twitch API on Account Created from Zoom Admin API
Zoom Admin + Twitch
 
Try it
Get Channel Editors with Twitch API on Account Created from Zoom Admin API
Zoom Admin + Twitch
 
Try it
Get Channel Followers with Twitch API on Account Created from Zoom Admin API
Zoom Admin + Twitch
 
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
Block User with the Twitch API

Blocks a user; that is, adds a specified target user to your blocks list

 
Try it
Check Channel Subscription with the Twitch API

Checks if you are subscribed to the specified user's channel

 
Try it
Delete Video with the Twitch API

Deletes a specified video

 
Try it
Get Channel Editors with the Twitch API

Gets a list of users who are editors for your channel

 
Try it
Get Channel Followers with the Twitch API

Retrieves a list of users who follow the authenticated user. See the documentation

 
Try it

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

Overview of Twitch

With the Twitch API, you can develop apps that:

  • Display a list of top Twitch channels
  • Allow users to search for specific Twitch channels
  • Show information about a specific Twitch channel
  • Allow users to follow or unfollow a Twitch channel
  • Notify users when their favorite Twitch channels go live

Connect Twitch

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: {
    twitch: {
      type: "app",
      app: "twitch",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.twitch.tv/helix/users`,
      headers: {
        Authorization: `Bearer ${this.twitch.$auth.oauth_access_token}`,
        "Client-ID": `${this.twitch.$auth.oauth_client_id}`,
      },
    })
  },
})