Trusted by 250,000+ developers from startups to Fortune 500 companies:
This is a pre-built, open source 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 Created on Zoom
Description:Emits an event each time a meeting is created where you're the host
Version:0.0.3
Key:zoom-meeting-created
import zoom from "../../zoom.app.mjs";
export default {
key: "zoom-meeting-created",
name: "Meeting Created",
description:
"Emits an event each time a meeting is created where you're the host",
version: "0.0.3",
dedupe: "unique",
props: {
zoom,
zoomApphook: {
type: "$.interface.apphook",
appProp: "zoom",
eventNames: [
"meeting.created.by_me",
"meeting.created.for_me",
],
},
},
async run(event) {
const { payload } = event;
const { object } = payload;
this.$emit(
{
event: "meeting.created",
payload,
},
{
summary: `Meeting ${object.topic} created`,
id: object.uuid,
ts: +new Date(object.start_time),
},
);
},
};
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.
Label | Prop | Type | Description |
---|
Zoom | zoom | app | This component uses the Zoom app. |
| zoomApphook | $.interface.apphook | |
Zoom uses OAuth authentication. When you connect your Zoom account, Pipedream will open a popup window where you can sign into Zoom 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 API.
Pipedream requests the following authorization scopes when you connect your account:
Zoom is the leader in modern enterprise video communications, with an easy, reliable cloud platform for video and audio conferencing, chat, and webinars.