← Zoom Admin + Airtable integrations

Create single record with Airtable API on Custom Events from Zoom Admin API

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

Trigger workflow on
Custom Events from the Zoom Admin API
Next, do this
Create single record with the Airtable 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

This integration creates a workflow with a Zoom Admin trigger and Airtable action. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Select this integration
  2. Configure the Custom Events trigger
    1. Connect your Zoom Admin account
    2. Select one or more Zoom Events
    3. Configure zoomApphook
  3. Configure the Create single record action
    1. Connect your Airtable account
    2. Select a Base
    3. Select a Table
    4. Configure Typecast
  4. Deploy the workflow
  5. Send a test event to validate your setup
  6. Turn on the trigger

Details

This integration uses pre-built, source-available components from Pipedream's GitHub repo. These components are 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.

Trigger

Description:Listen for any events tied to your Zoom account
Version:0.1.0
Key:zoom_admin-custom-events

Trigger Code

import zoomAdmin from "../../zoom_admin.app.mjs";

export default {
  key: "zoom_admin-custom-events",
  type: "source",
  name: "Custom Events",
  description: "Listen for any events tied to your Zoom account",
  version: "0.1.0",
  props: {
    zoomAdmin,
    eventNameOptions: {
      label: "Zoom Events",
      type: "string[]",
      async options() {
        return [
          "account.created",
          "account.updated",
          "account.settings_updated",
          "account.disassociated",
          "meeting.alert",
          "meeting.created",
          "meeting.updated",
          "meeting.deleted",
          "meeting.started",
          "meeting.ended",
          "meeting.registration_created",
          "meeting.registration_approved",
          "meeting.registration_cancelled",
          "meeting.registration_denied",
          "meeting.sharing_started",
          "meeting.sharing_ended",
          "meeting.participant_jbh_joined",
          "meeting.participant_joined",
          "meeting.participant_left",
          "meeting.participant_joined_waiting_room",
          "meeting.participant_admitted",
          "meeting.participant_put_in_waiting_room",
          "meeting.participant_left_waiting_room",
          "recording.started",
          "recording.paused",
          "recording.resumed",
          "recording.stopped",
          "recording.completed",
          "recording.renamed",
          "recording.trashed",
          "recording.deleted",
          "recording.recovered",
          "recording.transcript_completed",
          "recording.registration_created",
          "recording.registration_approved",
          "recording.registration_denied",
          "user.created",
          "user.invitation_accepted",
          "user.updated",
          "user.settings_updated",
          "user.deactivated",
          "user.activated",
          "user.disassociated",
          "user.deleted",
          "user.presence_status_updated",
          "user.personal_notes_updated",
          "user.signed_in",
          "user.signed_out",
          "webinar.created",
          "webinar.updated",
          "webinar.deleted",
          "webinar.started",
          "webinar.ended",
          "webinar.alert",
          "webinar.sharing_started",
          "webinar.sharing_ended",
          "webinar.registration_created",
          "webinar.registration_approved",
          "webinar.registration_denied",
          "webinar.registration_cancelled",
          "webinar.participant_joined",
          "webinar.participant_left",
          "zoomroom.alert",
          "zoomroom.delayed_alert",
        ];
      },
    },
    zoomApphook: {
      type: "$.interface.apphook",
      appProp: "zoomAdmin",
      async eventNames() {
        return this.eventNameOptions;
      },
    },
  },
  async run(event) {
    console.log(event);
    this.$emit(event, {
      summary: event.event,
    });
  },
};

Trigger 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.
Zoom EventseventNameOptionsstring[]Select a value from the drop down menu.
zoomApphook$.interface.apphook

Trigger 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)

Action

Description:Adds a record to a table.
Version:1.0.3
Key:airtable-create-single-record

Airtable Overview

Using the Airtable API, you can build applications that can:

  • Create and manage databases
  • Add, update, and delete records
  • Search for records
  • Sort and filter records
  • Display records in a variety of ways
  • Import and export data

Action Code

import commonActions from "../../common/actions.mjs";
import airtable from "../../airtable.app.mjs";
import common from "../common.mjs";

export default {
  key: "airtable-create-single-record",
  name: "Create single record",
  description: "Adds a record to a table.",
  version: "1.0.3",
  type: "action",
  props: {
    ...common.props,
    // eslint-disable-next-line pipedream/props-label,pipedream/props-description
    tableId: {
      ...common.props.tableId,
      reloadProps: true,
    },
    typecast: {
      propDefinition: [
        airtable,
        "typecast",
      ],
    },
  },
  async additionalProps() {
    return commonActions.additionalProps(this);
  },
  async run({ $ }) {
    return commonActions.createRecord(this, $);
  },
};

Action Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI.

LabelPropTypeDescription
AirtableairtableappThis component uses the Airtable app.
BasebaseIdstringSelect a value from the drop down menu.
TabletableIdstringSelect a value from the drop down menu.
Typecasttypecastboolean

The Airtable API will perform best-effort automatic data conversion from string values if the typecast parameter is True. Automatic conversion is disabled by default to ensure data integrity, but it may be helpful for integrating with 3rd party data sources.

Action Authentication

Airtable uses API keys for authentication. When you connect your Airtable account, Pipedream securely stores the keys so you can easily authenticate to Airtable APIs in both code and no-code steps.

Visit your account settings, copy your API key, and enter it below. If you only need to read data from Airtable, and not modify it, you can generate a read-only API key.


get airtable api key

About Airtable

Looks like a spreadsheet, acts like a database.

More Ways to Connect Airtable + Zoom Admin

Add meeting registrant with Zoom Admin API on New, Modified or Deleted Records from Airtable API
Airtable + Zoom Admin
 
Try it
Add meeting registrant with Zoom Admin API on New or Modified Records in View from Airtable API
Airtable + Zoom Admin
 
Try it
Add meeting registrant with Zoom Admin API on New or Modified Records from Airtable API
Airtable + Zoom Admin
 
Try it
Add meeting registrant with Zoom Admin API on New Records in View from Airtable API
Airtable + Zoom Admin
 
Try it
Add meeting registrant with Zoom Admin API on New Records from Airtable API
Airtable + Zoom Admin
 
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 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
Add webinar registrant with the Zoom Admin API

Register a participant 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