Skip to main content
Generalopenai

setup-zoom-webhooks

Use when building Zoom webhooks.

Stars
1,305
Source
openai/plugins
Updated
2026-05-30
Slug
openai--plugins--webhooks
View on GitHubRaw SKILL.md

// install — copy + paste into any project

mkdir -p .claude/skills && curl -fsSL https://raw.githubusercontent.com/openai/plugins/HEAD/plugins/zoom/skills/webhooks/SKILL.md -o .claude/skills/webhooks.md

Drops the SKILL.md into .claude/skills/webhooks.md. Works with Claude Code, Cursor, and any agent that loads SKILL.md files from .claude/skills/.

Setup Zoom Webhooks

Use this skill when the integration receives Zoom events over HTTP. If the user needs persistent low-latency event streams, compare against setup-zoom-websockets.

Workflow

  1. Identify the event types and resource scope before creating subscriptions.
  2. Implement endpoint verification and signature verification before processing business logic.
  3. Store raw event IDs, timestamps, and delivery metadata for replay protection and debugging.
  4. Make handlers idempotent because Zoom can retry delivery.
  5. Separate webhook ingestion from downstream API calls with a queue when reliability matters.
  6. Debug by checking endpoint reachability, TLS, validation token handling, signature base string, app event subscription, and account-level settings.

References