← Zoom Admin

Add webinar registrant with Zoom Admin API

Pipedream makes it easy to connect APIs for Zoom Admin and 1200+ other apps remarkably fast.

Trigger workflow on
HTTP requests, schedules and app events
Next, do this
Add webinar registrant with the Zoom Admin API
No credit card required
Into to Pipedream
Watch us build a workflow
Watch us build a workflow
7 min
Watch now ➜

Trusted by 500,000+ developers from startups to Fortune 500 companies

Adyen logo
Brex logo
Carta logo
Checkr logo
Chameleon logo
DevRev logo
LinkedIn logo
Netflix logo
New Relic logo
OnDeck logo
Replicated logo
Scale AI logo
Teamwork logo
Warner Bros. logo
Xendit logo

Developers Pipedream

Getting Started

Create a workflow to Add webinar registrant with the Zoom Admin API. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Configure the Add webinar registrant action
    1. Connect your Zoom Admin account
    2. Optional- Select a Webinar
    3. Optional- Select one or more Occurrence ID
    4. Configure Email
    5. Configure First Name
    6. Configure Last Name
  2. Select a trigger to run your workflow on HTTP requests, schedules or app events
  3. Deploy the workflow
  4. Send a test event to validate your setup
  5. Turn on the trigger

Integrations

Add webinar registrant with Zoom Admin API on New Requests from HTTP / Webhook API
HTTP / Webhook + Zoom Admin
 
Try it
Add webinar registrant with Zoom Admin API on New Submission from Typeform API
Typeform + Zoom Admin
 
Try it
Add webinar registrant with Zoom Admin API on New Submission (Instant) from Jotform API
Jotform + Zoom Admin
 
Try it
Add webinar registrant with Zoom Admin API on New Custom Webhook Events from Stripe API
Stripe + Zoom Admin
 
Try it
Add webinar registrant with Zoom Admin API on New Scheduled Tasks from Pipedream API
Pipedream + Zoom Admin
 
Try it

Details

This is a pre-built, source-available component from Pipedream's GitHub repo. The component is developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

Add webinar registrant on Zoom Admin
Description:Register a participant for a webinar. [See the docs here](https://marketplace.zoom.us/docs/api-reference/zoom-api/webinars/webinarregistrantcreate)
Version:0.1.2
Key:zoom_admin-add-webinar-registrant

Code

import zoomAdmin from "../../zoom_admin.app.mjs";
import get from "lodash/get.js";
import isArray from "lodash/isArray.js";
import { axios } from "@pipedream/platform";

export default {
  name: "Add webinar registrant",
  description: "Register a participant for a webinar. [See the docs here](https://marketplace.zoom.us/docs/api-reference/zoom-api/webinars/webinarregistrantcreate)",
  key: "zoom_admin-add-webinar-registrant",
  version: "0.1.2",
  type: "action",
  props: {
    zoomAdmin,
    webinar: {
      propDefinition: [
        zoomAdmin,
        "webinar",
      ],
    },
    occurrence: {
      propDefinition: [
        zoomAdmin,
        "occurrence",
        ({ webinar }) => ({
          meeting: webinar,
          isWebinar: true,
        }),
      ],
      type: "string[]",
      description: "The [webinar occurrence ID](https://support.zoom.us/hc/en-us/articles/216354763-How-to-Schedule-A-Recurring-Webinar).",
    },
    email: {
      type: "string",
      label: "Email",
      description: "A valid email address of the registrant",
    },
    firstName: {
      type: "string",
      label: "First Name",
      description: "Registrant's first name",
    },
    lastName: {
      type: "string",
      label: "Last Name",
      description: "Registrant's last name",
    },
  },
  async run ({ $ }) {
    const res = await axios($, this.zoomAdmin._getAxiosParams({
      method: "POST",
      path: `/webinars/${get(this.webinar, "value", this.webinar)}/registrants`,
      params: {
        occurrence_ids: isArray(this.occurrence)
          ? this.occurrence.map((occurrence) => get(occurrence, "value", occurrence)).join(",")
          : this.occurrence,
      },
      data: {
        email: this.email,
        first_name: this.firstName,
        last_name: this.lastName,
      },
    }));

    if (this.occurrence) {
      const occurrences = this.occurrence.map((occurrence) => get(occurrence, "label", occurrence)).join(",");
      $.export("$summary", `"${this.firstName} ${this.lastName}" was successfully invited to the occurrence(s) "${occurrences}" of the webinar "${get(this.webinar, "label", this.webinar)}"`);
    } else {
      $.export("$summary", `"${this.firstName} ${this.lastName}" was successfully invited to the webinar, "${get(this.webinar, "label", this.webinar)}"`);
    }

    return res;
  },
};

Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
Zoom AdminzoomAdminappThis component uses the Zoom Admin app.
WebinarwebinarstringSelect a value from the drop down menu.
Occurrence IDoccurrencestring[]Select a value from the drop down menu.
Emailemailstring

A valid email address of the registrant

First NamefirstNamestring

Registrant's first name

Last NamelastNamestring

Registrant's last name

Authentication

Zoom Admin uses OAuth authentication. When you connect your Zoom Admin account, Pipedream will open a popup window where you can sign into Zoom Admin and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Zoom Admin API.

Pipedream requests the following authorization scopes when you connect your account:

About Zoom Admin

Video conferencing (includes account-level scopes)

More Ways to Use Zoom Admin

Triggers

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

Actions

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
Create a meeting with the Zoom Admin API

Create a new room in zoom. See the docs here

 
Try it
Create Webinar with the Zoom Admin API

Create a webinar for an user. See the docs here

 
Try it
Delete Cloud Recording with the Zoom Admin API

Remove a recording from a meeting or webinar. See the docs here

 
Try it

Explore Other Apps

1
-
12
of
1200+
apps by most popular

HTTP / Webhook
HTTP / Webhook
Get a unique URL where you can send HTTP or webhook requests
Node
Node
Anything you can do with Node.js, you can do in a Pipedream workflow. This includes using most of npm's 400,000+ packages.
Beta
Python
Python
Anything you can do in Python can be done in a Pipedream Workflow. This includes using any of the 350,000+ PyPi packages available in your Python powered workflows.
Schedule
Schedule
Trigger workflows on an interval or cron schedule.
Beta
Data Stores
Data Stores
Use Pipedream Data Stores to manage state throughout your workflows.
Telegram Bot
Telegram Bot
Telegram is a cloud-based instant messaging and voice over IP service
OpenAI (ChatGPT)
OpenAI (ChatGPT)
OpenAI is an AI research and deployment company with the mission to ensure that artificial general intelligence benefits all of humanity. They are the makers of popular apps like ChatGPT and DALL·E 2.
Google Sheets
Google Sheets
With Google Sheets, you can create, edit, and collaborate wherever you are
Discord
Discord
Use this app to create a Discord source that emits messages from your guild to a Pipedream workflow.
GitHub
GitHub
Where the world builds software. Millions of developers and companies build, ship, and maintain their software on GitHub—the largest and most advanced development platform in the world.
Formatting
Formatting
Pre-built actions to make formatting and manipulating data within your workflows easier.
Slack
Slack
Slack is a channel-based messaging platform. With Slack, people can work together more effectively, connect all their software tools and services, and find the information they need to do their best work — all within a secure, enterprise-grade environment.