# Blink Zoom

> Manage Zoom meetings, webinars, and recordings. Use when asked to create meetings, list upcoming calls, get recording links, or check meeting participants. Requires a linked Zoom connection.

- Skill: `blink-new/blink-zoom` (Agent Skill)
- Install (CLI): `npx skillmds@latest add blink-new/blink-zoom`
- Raw SKILL.md: https://api.skillmd.com/api/skills/blink-new/blink-zoom/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Productivity
- Author: blink-new (https://skillmd.com/u/blink-new)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/blink-new/blink-zoom

---


# Blink Zoom

Access the user's linked Zoom account. Provider key: `zoom`.

## List upcoming meetings
```bash
blink connector exec zoom /users/me/meetings GET '{"type":"upcoming","page_size":20}'
```

## Create a meeting
```bash
blink connector exec zoom /users/me/meetings POST '{
  "topic": "Team sync",
  "type": 2,
  "start_time": "2024-03-01T10:00:00Z",
  "duration": 60,
  "timezone": "UTC"
}'
```

## Get meeting details
```bash
blink connector exec zoom /meetings/{meetingId} GET
```

## Delete a meeting
```bash
blink connector exec zoom /meetings/{meetingId} DELETE
```

## List cloud recordings
```bash
blink connector exec zoom /users/me/recordings GET '{"page_size":10}'
```

## Get recording for a meeting
```bash
blink connector exec zoom /meetings/{meetingId}/recordings GET
```

## List webinars
```bash
blink connector exec zoom /users/me/webinars GET '{"page_size":10}'
```

## Get meeting participants
```bash
blink connector exec zoom /past_meetings/{meetingId}/participants GET
```

## Common use cases
- "Schedule a Zoom meeting for tomorrow at 2pm" → POST /users/me/meetings
- "List my upcoming Zoom calls" → GET /users/me/meetings?type=upcoming
- "Get the recording link for yesterday's meeting" → GET /users/me/recordings
- "Cancel meeting {id}" → DELETE /meetings/{id}
- "Who attended the last meeting?" → GET /past_meetings/{id}/participants

