# Send Zoom Meeting create/delete to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "zoom-meeting",
    "name": "Zoom Meeting create/delete",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/Neuyazvimyi/zoom-meeting",
    "canonicalUrl": "https://clawhub.ai/Neuyazvimyi/zoom-meeting",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/zoom-meeting",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=zoom-meeting",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "references/zoom_api_reference.md",
      "scripts/zoom_api.py",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/zoom-meeting"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/zoom-meeting",
    "downloadUrl": "https://openagent3.xyz/downloads/zoom-meeting",
    "agentUrl": "https://openagent3.xyz/skills/zoom-meeting/agent",
    "manifestUrl": "https://openagent3.xyz/skills/zoom-meeting/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/zoom-meeting/agent.md"
  }
}
```
## Documentation

### Zoom Meeting Skill

This skill allows programmatic management of Zoom meetings. Supports creating, retrieving, listing, and deleting meetings via the Zoom REST API.

### When to Use

Use this skill when the user:

Wants to create or schedule a Zoom meeting
Requests meeting details (join URL, password, etc.)
Wants to see all upcoming meetings
Needs to cancel/delete a meeting
Mentions "Zoom" along with meeting-related actions

### Authentication

The skill automatically handles authentication via Zoom Server-to-Server OAuth.

Credentials location: ~/.openclaw/credentials/zoom.json

Required credentials:

{
  "account_id": "YOUR_ACCOUNT_ID",
  "client_id": "YOUR_CLIENT_ID",
  "client_secret": "YOUR_CLIENT_SECRET"
}

The skill automatically obtains and refreshes access tokens.

### 1. create_meeting

Create a new Zoom meeting.

Parameters:

topic (required): Meeting topic/title
start_time (optional): Date/time in ISO 8601 format. Default: current time.
duration (optional): Duration in minutes. Default: 40.
timezone (optional): Timezone. Default: Asia/Almaty.

JSON Example:

{
  "action": "create_meeting",
  "topic": "Daily Standup",
  "start_time": "2026-03-10T10:00:00",
  "duration": 30,
  "timezone": "Asia/Almaty"
}

### 2. get_meeting

Retrieve details of an existing meeting.

Parameters:

meeting_id (required): Zoom meeting ID

JSON Example:

{
  "action": "get_meeting",
  "meeting_id": "123456789"
}

### 3. list_meetings

Get a list of all user's meetings.

Parameters:

user_id (optional): User ID. Default: me.

JSON Example:

{
  "action": "list_meetings"
}

### 4. delete_meeting

Delete a Zoom meeting.

Parameters:

meeting_id (required): Zoom meeting ID

JSON Example:

{
  "action": "delete_meeting",
  "meeting_id": "123456789"
}

### Natural Language

User: "Create a Zoom meeting tomorrow at 10 AM called 'Architecture Review'"

Actions:

Parse natural language to extract parameters
Convert "tomorrow at 10 AM" to ISO 8601 format
Call create_meeting with extracted parameters
Return human-readable response

User: "What's the join URL for meeting 123456789?"

Actions:

Call get_meeting with the meeting ID
Return join_url from the response

User: "Show all my upcoming Zoom meetings"

Actions:

Call list_meetings
Format results into a readable list

User: "Delete meeting 987654321"

Actions:

Call delete_meeting with the meeting ID
Confirm deletion

### Structured JSON

Users can pass direct JSON commands:

{
  "action": "create_meeting",
  "topic": "Sprint Planning",
  "start_time": "2026-03-11T14:00:00",
  "duration": 60
}

### Parameter Collection

If the user provided incomplete information for creating a meeting, ask clarifying questions:

User: "Create a Zoom meeting"

You: "Sure! What's the meeting topic?"

User: "Team Sync"

You: "When should the meeting start?"

User: "Tomorrow at 2 PM"

You: "What duration? (default: 40 minutes)"

Then create the meeting with collected parameters and defaults.

### Output Format

Always return human-readable text only (no JSON):

Example for create_meeting:

✅ Meeting created!

📋 Topic: Daily Standup
🆔 Meeting ID: 123456789
🔗 Join: https://zoom.us/j/123456789
🔑 Password: 983421
⏰ Start: 2026-03-10T10:00:00
⏱ Duration: 30 min
🌍 Timezone: Asia/Almaty

### Error Handling

Handle errors gracefully and return them in readable format:

Authentication failure:

Error: Failed to obtain access token. Check credentials in ~/.openclaw/credentials/zoom.json

Invalid meeting ID:

Error: Meeting 123456789 does not exist or you don't have permission to access it

API error:

Error: Zoom API returned error 429: Rate Limited

### Implementation

The skill uses scripts/zoom_api.py for all API interactions. The script handles:

Loading credentials from file
OAuth token generation and refresh
HTTP requests to Zoom API endpoints
Response parsing and error handling

Key endpoints:

Create: POST /users/me/meetings
Get: GET /meetings/{meetingId}
List: GET /users/me/meetings
Delete: DELETE /meetings/{meetingId}

### Defaults

ParameterDefaultstart_timeCurrent timeduration40 minutestimezoneAsia/Almaty

### Meeting Creation Rules

Meetings are always created for /users/me (authenticated user)
No duplicate detection—each request creates a new meeting
All meetings are scheduled meetings (type 2)

### Reference Files

references/zoom_api_reference.md - Detailed API documentation, endpoints, and error codes

### Design Principles

This skill follows these principles:

Minimal verbosity - Responses are brief and focused
Deterministic output - Same input always produces same output structure
Agent-friendly - Structured responses that AI agents can parse
Safe credential handling - Never expose credentials in logs or output
Human-readable output - Always return human-readable text, not JSON
Local time display - Meeting times are shown in the specified timezone, not UTC

### Dependencies

requests - For HTTP requests to Zoom API
pytz - For timezone conversions (installed automatically)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Neuyazvimyi
- Version: 1.1.5
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/zoom-meeting)
- [Send to Agent page](https://openagent3.xyz/skills/zoom-meeting/agent)
- [JSON manifest](https://openagent3.xyz/skills/zoom-meeting/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/zoom-meeting/agent.md)
- [Download page](https://openagent3.xyz/downloads/zoom-meeting)