View as Markdown
Zoom icon

Zoom ACTION

List Meetings

List meetings for a user. See the documentation
  • Action
  • Read only
  • OAuth
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Zoom account once, then configure and run List Meetings from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "zoom-list-meetings",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    zoom: { authProvisionId: "apn_xxxxxxx" },
    userId: "User ID",
    type: "Type",
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

List Meetings inputs
Property Type Description
userId User ID string
The user ID or email address of the user to list meetings for
Required Dynamic
type Type string
The type of meetings to list. Defaults to scheduled
Optional
from From string
The start date and time of the meetings to list. Example: 2023-01-01
Optional
to To string
The end date and time of the meetings to list. Example: 2023-01-01
Optional
timezone Timezone string
The timezone to use for the from and to dates. Example: America/New_York
Optional
titleSearch Title Search string
The title of the meetings to search for
Optional
createdAfter Created After string
The date and time to filter meetings created after. Example: 2023-01-01
Optional
createdBefore Created Before string
The date and time to filter meetings created before. Example: 2023-01-01
Optional
max Max Resources integer
The maximum number of resources to retrieve.
Optional

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
zoom-list-meetings
Version
0.0.6
App
Zoom
Authentication
OAuth
Read-only
Yes
Destructive
No
Open world
Yes