ActionZoomUpdated September 2026
How do I list Zoom meetings?
Short answer: You can list meetings in Zoom by hand from its own interface, but it won’t repeat itself. On TinyCommand, add the Zoom List Meetings action to a workflow, map its 2 inputs from any upstream app, and it runs automatically every time the trigger fires. No code, and a free tier to start.
Inputs
The fields this action accepts.
Every field can be mapped from an upstream trigger, AI step, table row, or hard-coded literal.
| Field | Type | Required | Description |
|---|---|---|---|
Meeting Type type | options | Optional | Meeting Type. Options: Upcoming, Previous (last 30 days), Scheduled |
Page Size page_size | string | Optional | Page Size. e.g. "30" |
Sample request
{"type": "{{trigger.type}}","page_size": "30"}
Returns
{"meetings": [{"id": 123,"topic": "Team Sync","duration": 30,"join_url": "https://zoom.us/j/123","start_time": "2025-01-20T10:00:00Z"}],"total_records": 5}
Use these fields in downstream nodes for routing, logging, or error handling.
Triggered by
Apps that pair well as the trigger for List Meetings.
Any of these apps can fire this action as part of a workflow.
FAQ
Questions about List Meetings.
What does the List Meetings action do in Zoom?
Lists upcoming, live, and past Zoom meetings for the authenticated user. Used for daily agenda emails or for prep-doc generation.
What inputs does List Meetings require?
List Meetings has no required inputs. Sensible defaults are applied if you leave fields blank.
Can I use dynamic inputs from earlier workflow nodes?
Yes. Any field on this action can pull values from upstream nodes, whether that's a form response, a trigger payload, an AI output, or a lookup result.
What happens if Zoom returns an error?
The run history shows the failed step with its input and the error message Zoom returned, so you can fix the input and run the workflow again. Automatic retries are built into HTTP steps only, where you can also set your own retry count and delay.
Does List Meetings support batch operations?
Run List Meetings inside a loop to process each item in an array. TinyCommand does not throttle calls for you, so for large arrays add a Delay step if you need to stay within Zoom's rate limits.
More actions
Other Zoom actions.
Action
Create Meeting
Schedules a new Zoom meeting with topic, start time, duration, password, waiting-room, and recording settings. Returns the join URL and host URL.
ActionDelete Meeting
Deletes a Zoom meeting by ID, optionally notifying registrants/hosts. Used to clean up cancellations propagated from a calendar or booking tool.
ActionGet Meeting
Returns details of a specific Zoom meeting: topic, start time, duration, agenda, join_url, and recording info. The standard read after a trigger fires with a meeting ID.
ActionList Recordings
Lists cloud recordings for the authenticated user with download URLs. Use to mirror recordings into S3/Drive, transcribe, or generate AI summaries.
ActionList Users
Lists all users in the Zoom account with email, type, and status. Required first step for any cross-user automation; needs an account-level OAuth app with the right scopes.
ActionUpdate Meeting
Updates an existing Zoom meeting's topic, start time, duration, agenda, or settings. Only the fields you pass are changed.