Create Meeting
Creates a meeting in Zoom.
This node is also exposed as an AI Agent tool.
This node has 1 input port and 1 output port.
Common Properties
Every node shares these.
- Name — the node's display name on the canvas.
- Color — the node's colour on the canvas.
- Delay Before (sec) — wait this long before the node runs.
- Delay After (sec) — wait this long after the node runs.
- Continue On Error — carry on instead of failing the flow. Defaults to false.
info
When Continue On Error is true the error is not raised at all, so a Catch node will not see it either.
Inputs
| Property | Field | Description |
|---|---|---|
| Client ID | inClientID | Client ID from Connect node |
| Topic | inTopic | Meeting title/topic |
| User ID | inUserID | User ID or email. Use 'me' for the authenticated user |
Outputs
| Property | Field | Description |
|---|---|---|
| Join URL | outJoinURL | URL for participants to join the meeting |
| Meeting ID | outMeetingID | Created meeting ID |
| Result | outResult | Created meeting details |
Options
| Property | Field | Description |
|---|---|---|
| Agenda | optAgenda | Meeting description/agenda |
| Auto Recording | optAutoRecording | Automatic recording setting One of: none, local, cloud. |
| Credentials | optCredentials | Zoom credentials |
| Duration (minutes) | optDuration | Meeting duration in minutes |
| Join Before Host | optJoinBeforeHost | Allow participants to join before host |
| Meeting Type | optType | Type of meeting to create One of: 1, 2, 3, 8. |
| Mute Upon Entry | optMuteUponEntry | Mute participants upon entry |
| Password | optPassword | Meeting password (max 10 characters) |
| Start Time | optStartTime | Meeting start time in ISO 8601 format (e.g. 2024-01-15T10:00:00Z). Required for scheduled meetings |
| Timeout (seconds) | optTimeout | Maximum time in seconds to wait |
| Timezone | optTimezone | Timezone (e.g. America/Los_Angeles). Defaults to UTC |
| Waiting Room | optWaitingRoom | Enable waiting room |
Requirements
- A Client ID from this package's Connect node, unless you set credentials directly on this node.
- Zoom OAuth2 — Authorize via browser to access your Zoom account
_redirect_url— Redirect URL (readonly, optional). Add this to your Zoom app's Redirect URL for OAuthclient_id— Client ID (text, required). OAuth 2.0 Client ID from Zoom App Marketplaceclient_secret— Client Secret (password, required). OAuth 2.0 Client Secret from Zoom App Marketplace
- Server-to-Server OAuth — For server automation without user interaction
account_id— Account ID (text, required). Zoom Account IDclient_id— Client ID (text, required). Server-to-Server OAuth Client IDclient_secret— Client Secret (password, required). Server-to-Server OAuth Client Secret
Store these in a Vault and reference the vault item from the node, rather than typing the secret into the property.
Related nodes
List Meetings · Get Meeting · Update Meeting · Delete Meeting · Get Meeting Invitation · List Past Participants
Elsewhere in the package: Connect · Disconnect · List Recordings · Get Meeting Recordings · Delete Recording
See also
- Zoom — every node in this package
- Message object — how properties read values from
msg - Handling failure — Continue On Error, Catch and retries