← Zoom Admin

Meeting Ended from Zoom Admin API

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

Trigger workflow on
Meeting Ended from the Zoom Admin API
Next, do this
Connect to 1000+ APIs using code and no-code building blocks
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

Trigger a workflow on Meeting Ended with Zoom Admin API. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Configure the Meeting Ended trigger
    1. Connect your Zoom Admin account
    2. Configure zoomApphook
  2. Add steps to connect to 1000+ APIs using code and no-code building blocks
  3. Deploy the workflow
  4. Send a test event to validate your setup
  5. Turn on the trigger

Integrations

Send Message with Discord Webhook API on Meeting Ended from Zoom Admin API
Zoom Admin + Discord Webhook
 
Try it
Add Multiple Rows with Google Sheets API on Meeting Ended from Zoom Admin API
Zoom Admin + Google Sheets
 
Try it
Get Film with SWAPI API on Meeting Ended from Zoom Admin API
Zoom Admin + SWAPI - Star Wars
 
Try it
Create Multiple Records with Airtable API on Meeting Ended from Zoom Admin API
Zoom Admin + Airtable
 
Try it
Chat with OpenAI (ChatGPT) API on Meeting Ended from Zoom Admin API
Zoom Admin + OpenAI (ChatGPT)
 
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.

Meeting Ended on Zoom Admin
Description:Emits an event each time a meeting ends in your Zoom account
Version:0.1.0
Key:zoom_admin-meeting-ended

Code

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

export default {
  key: "zoom_admin-meeting-ended",
  type: "source",
  name: "Meeting Ended",
  description: "Emits an event each time a meeting ends in your Zoom account",
  version: "0.1.0",
  dedupe: "unique", // Dedupe based on meeting ID
  props: {
    zoomAdmin,
    zoomApphook: {
      type: "$.interface.apphook",
      appProp: "zoomAdmin",
      eventNames: [
        "meeting.ended",
      ],
    },
  },
  async run(event) {
    const { payload } = event;
    const { object } = payload;
    this.$emit(event, {
      summary: `Meeting ${object.topic} ended`,
      id: object.uuid,
      ts: +new Date(object.end_time),
    });
  },
};

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.
zoomApphook$.interface.apphook

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