Manage Zoom meetings, webinars, registrants, cloud recordings, and event workflows via the Zoom API. Use this skill when users want to schedule meetings, manage webinar participants, access recordings, or automate Zoom event workflows.

Install

openclaw skills install @hith3sh/zoom-meetings

Zoom

Zoom

Access Zoom via the Zoom API with managed OAuth authentication. Manage meetings, webinars, registrants, collaborators, and event workflows from chat.

This skill uses ClawLink for hosted connection flows and credentials so you do not need to configure Zoom API access yourself.

Setup in 3 Steps

Step 1: InstallStep 2: Pair AccountStep 3: Connect Zoom
InstallPairApp-specific connection GIF coming soon
Run the install command in OpenClawSign in and approve the deviceOpen the dashboard and connect Zoom

How It Works

┌─────────────────┐     ┌──────────────┐     ┌──────────────────┐
│   OpenClaw      │────▶│   ClawLink   │────▶│    Zoom API       │
│   (User Chat)   │     │   (OAuth)    │     │   (Meetings)     │
└─────────────────┘     └──────────────┘     └──────────────────┘
          │                       │                       │
          │  1. Install Plugin    │                       │
          │  2. Pair Device       │                       │
          │  3. Connect Zoom      │                       │
          │                       │  4. Secure Token      │
          │                       │  5. Proxy Requests    │
          │                       │                       │
          ▼                       ▼                       ▼
    ┌──────────┐           ┌──────────┐           ┌──────────┐
    │  SKILL   │           │ Dashboard│           │  Zoom    │
    │  File    │           │ Auth     │           │ Web Portal│
    └──────────┘           └──────────┘           └──────────┘

Install

Install the verified ClawLink plugin from ClawHub. After the user confirms, complete the full setup so ClawLink tools are visible in the next OpenClaw chat.

openclaw plugins install clawhub:clawlink-plugin
openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
openclaw gateway restart

Then tell the user: "OpenClaw has been restarted. Send /new as a standalone message to start a fresh chat, then ask for Zoom again."

Quick Start

# List integrations
clawlink_list_integrations

# List Zoom tools
clawlink_list_tools --integration zoom

# Search for a specific tool
clawlink_search_tools --query "meeting" --integration zoom

Authentication

All Zoom tool calls are authenticated automatically by ClawLink using the user's connected Zoom account.

No API key is required in chat. ClawLink stores the OAuth token securely and injects it into every Zoom API request on the user's behalf.

Getting Connected

  1. Install the ClawLink plugin (see Install above).
  2. Pair the plugin with clawlink_begin_pairing if it is not configured yet.
  3. Open https://claw-link.dev/dashboard?add=zoom and connect Zoom.
  4. Call clawlink_list_integrations to verify the connection is active.

Connection Management

List Connections

clawlink_list_integrations

Response: Returns all connected integrations. Look for zoom in the list.

Verify Connection

clawlink_list_tools --integration zoom

Response: Returns the live tool catalog for Zoom.

Reconnect

If Zoom tools are missing or the connection shows an error:

  1. Direct the user to https://claw-link.dev/dashboard?add=zoom
  2. After they confirm, call clawlink_list_integrations to verify
  3. Then call clawlink_list_tools --integration zoom

Discovery Workflow

  1. Call clawlink_list_integrations to confirm Zoom is connected.
  2. Call clawlink_list_tools --integration zoom to see the live catalog.
  3. Treat the returned list as the source of truth. Do not guess or assume what tools exist.
  4. If the user describes a capability but the exact tool is unclear, call clawlink_search_tools with a short query and integration zoom.
  5. If no Zoom tools appear, direct the user to https://claw-link.dev/dashboard?add=zoom.

Execution Workflow

┌─────────────────────────────────────────────────────────────┐
│  READ OPERATIONS (Safe)                                     │
│  list → get → search → describe → call                      │
│                                                             │
│  Example: List meetings → Get details → Show results        │
└─────────────────────────────────────────────────────────────┘
                               │
                               ▼
┌─────────────────────────────────────────────────────────────┐
│  WRITE OPERATIONS (Require Confirmation)                    │
│  list → get → describe → preview → confirm → call           │
│                                                             │
│  Example: Describe tool → Preview changes → User approves   │
│           → Execute update                                  │
└─────────────────────────────────────────────────────────────┘
  1. For unfamiliar tools, ambiguous requests, or any write action, call clawlink_describe_tool first.
  2. Use the returned guidance, schema, whenToUse, askBefore, safeDefaults, examples, and followups to shape the call.
  3. Prefer read, list, search, and get operations before writes when that reduces ambiguity.
  4. For writes or anything marked as requiring confirmation, call clawlink_preview_tool first.
  5. Execute with clawlink_call_tool. Pass confirmation only after the preview matches the user's intent.
  6. If the tool call fails, report the real error. Do not invent results or restate the failure as a missing capability unless the live catalog supports that conclusion.

Tool Reference

Meetings

ToolDescriptionMode
zoom_list_meetingsList scheduled meetings for a userRead
zoom_get_a_meetingGet meeting details by IDRead
zoom_create_a_meetingCreate a new meetingWrite
zoom_update_a_meetingUpdate an existing meetingWrite
zoom_delete_a_meetingDelete a meetingWrite
zoom_get_meeting_recordingsGet cloud recordings for a meetingRead

Webinars

ToolDescriptionMode
zoom_list_webinarsList scheduled webinarsRead
zoom_get_a_webinarGet webinar details by IDRead
zoom_list_webinar_registrantsList webinar registrantsRead
zoom_add_a_webinar_registrantRegister a participant for a webinarWrite

Users& Settings

ToolDescriptionMode
zoom_get_userGet user details by ID or emailRead
zoom_list_users_settingsGet user settings including preferencesRead
zoom_list_users_collaboration_devicesList user's collaboration devicesRead

Registrants & Participants

ToolDescriptionMode
zoom_add_a_meeting_registrantRegister a participant for a meetingWrite
zoom_get_past_meeting_participantsList participants from a past meetingRead
zoom_list_webinar_participantsList webinar participantsRead

ZRA (Revenue Accelerator)

ToolDescriptionMode
zoom_list_zra_conversationsList ZRA conversationsRead
zoom_get_zra_conversation_scorecardsGet conversation scorecardsRead
zoom_create_zra_conversationCreate a ZRA conversationWrite

Cloud Recordings

ToolDescriptionMode
zoom_list_all_recordingsList all cloud recordingsRead
zoom_list_archived_filesList archived meeting filesRead

Code Examples

List upcoming meetings

clawlink_call_tool --tool "zoom_list_meetings" \
  --params '{
    "user_id": "me",
    "page_size": 10
  }'

Create a meeting

clawlink_call_tool --tool "zoom_create_a_meeting" \
  --params '{
    "topic": "Team Standup",
    "start_time": "2025-01-15T09:00:00Z",
    "duration": 30,
    "timezone": "America/Los_Angeles"
  }'

Get meeting recordings

clawlink_call_tool --tool "zoom_get_meeting_recordings" \
  --params '{
    "meeting_id": "123456789"
  }'

Register a webinar attendee

clawlink_call_tool --tool "zoom_add_a_webinar_registrant" \
  --params '{
    "webinar_id": "123456789",
    "first_name": "Jane",
    "last_name": "Doe",
    "email": "jane.doe@example.com"
  }'

Security & Permissions

  • Access is scoped to the connected Zoom account's data and permissions.
  • All write operations require explicit user confirmation. Before executing any create, update, or delete call, confirm the target resource and intended effect with the user.
  • Destructive actions (deleting meetings, recordings) are marked as high-impact and must be confirmed.
  • Webinar operations may require a Pro or higher Zoom plan with webinar add-on.
  • Cloud recording access depends on the account's recording settings.

Notes

  • Meeting IDs may exceed 32-bit integer range; treat them as full-length numeric or string identifiers.
  • Start URLs for hosts expire in 2 hours for standard accounts.
  • Registrant operations require the meeting/webinar to have registration enabled.
  • Some tools require specific Zoom plans (Pro, Business, Enterprise) or add-ons.

Error Handling

Status / ErrorMeaning
Tool not foundThe tool name does not exist in the current catalog. Verify with clawlink_list_tools --integration zoom.
Missing connectionZoom is not connected. Direct the user to https://claw-link.dev/dashboard?add=zoom.
Meeting not foundThe meeting ID does not exist or the meeting has ended.
Registration has not been enabledEnable registration on the meeting before adding registrants.
Webinar plan is missingThe account does not have a webinar plan/license.
Only available for paid usersThe operation requires a licensed (paid) Zoom account.
Write rejectedUser did not confirm a write action. Always confirm before executing writes.

Troubleshooting: Tools Not Visible

  1. Check that the ClawLink plugin is installed:
    openclaw plugins list
    
  2. If the plugin is installed but tools are missing, tell the user to send /new as a standalone message to reload the catalog.
  3. If a fresh chat does not help, run:
    openclaw config set tools.alsoAllow '["clawlink-plugin"]' --strict-json
    openclaw gateway restart
    
  4. After restart, tell the user to send /new again and retry.

Troubleshooting: Invalid Tool Call

  1. Ensure the integration slug is exactly zoom.
  2. Use clawlink_describe_tool to verify parameter names and types before calling.
  3. For write operations, always call clawlink_preview_tool first.

Resources


Powered by ClawLink — an integration hub for OpenClaw

ClawLink Logo