build-zoom-rest-api-app
Reference skill for Zoom REST API. Use after choosing an API-based workflow when you need endpoint selection, resource-management patterns, OAuth requirements, rate-limit awareness, or API error debugging.
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o build-zoom-rest-api-app.zip https://jpskill.com/download/22700.zip && unzip -o build-zoom-rest-api-app.zip && rm build-zoom-rest-api-app.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/22700.zip -OutFile "$d\build-zoom-rest-api-app.zip"; Expand-Archive "$d\build-zoom-rest-api-app.zip" -DestinationPath $d -Force; ri "$d\build-zoom-rest-api-app.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
build-zoom-rest-api-app.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
build-zoom-rest-api-appフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 42
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
/build-zoom-rest-api-app
Zoomのサーバーサイド自動化とリソース管理を決定論的に行うための背景情報です。まずplan-zoom-product、plan-zoom-integration、またはdebug-zoomを優先し、その後エンドポイントレベルの詳細についてはこちらを参照してください。
Zoom REST API
Zoom REST API を使用してサーバーサイド統合を構築するための専門的なガイダンスです。このAPIは、会議、ユーザー、ウェビナー、レコーディング、レポート、およびすべてのZoomプラットフォームリソースをプログラムで管理するための600以上のエンドポイントを提供します。
公式ドキュメント: https://developers.zoom.us/api-hub/
APIハブリファレンス: https://developers.zoom.us/api-hub/meetings/
OpenAPIインベントリ: https://developers.zoom.us/api-hub/<domain>/methods/endpoints.json
クイックリンク
Zoom REST APIを初めて利用しますか?以下のパスに従ってください。
- APIアーキテクチャ - ベースURL、地域別URL、
meキーワード、IDとUUID、時間形式 - 認証フロー - OAuthセットアップ (S2S、User、PKCE、Device Code)
- 会議URLとMeeting SDK -
join_urlとMeeting SDKを混同しない - 会議ライフサイクル - Webhookによる作成 → 更新 → 開始 → 終了 → 削除
- レート制限戦略 - プランティア、ユーザーごとの制限、リトライパターン
リファレンス:
- 会議 - 会議のCRUD、タイプ、設定
- ユーザー - ユーザープロビジョニングと管理
- レコーディング - クラウドレコーディングへのアクセスとダウンロード
- AIサービス - Scribeエンドポイントインベントリと現在のAIサービスパスサーフェス
- GraphQLクエリ - 代替クエリAPI (ベータ版)
- 統合インデックス - このファイルの以下のセクションを参照してください
references/以下のほとんどのドメインファイルは、公式API Hubのendpoints.jsonインベントリに準拠しています。これらのファイルをメソッド/パス発見のためのローカルな信頼できる情報源として扱ってください。
問題が発生していますか?
- プリフライトチェックから開始 → 5分ランブック
- 401 Unauthorized → 認証フロー (トークンの有効期限、スコープを確認)
- 429 Too Many Requests → レート制限戦略
- エラーコード → 一般的なエラー
- ページネーションの混乱 → 一般的な問題
- Webhookが届かない → Webhookサーバー
- フォーラム由来のFAQ → フォーラムのよくある質問
- トークン/スコープの失敗 → トークン+スコーププレイブック
イベント駆動型統合を構築していますか?
- Webhookサーバー - CRC検証付きExpress.jsサーバー
- レコーディングパイプライン - Webhookイベントによる自動ダウンロード
クイックスタート
アクセストークンの取得 (Server-to-Server OAuth)
curl -X POST "https://zoom.us/oauth/token" \
-H "Authorization: Basic $(echo -n 'CLIENT_ID:CLIENT_SECRET' | base64)" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d "grant_type=account_credentials&account_id=ACCOUNT_ID"
レスポンス:
{
"access_token": "eyJhbGciOiJIUzI1NiJ9...",
"token_type": "bearer",
"expires_in": 3600,
"scope": "meeting:read meeting:write user:read"
}
会議の作成
curl -X POST "https://api.zoom.us/v2/users/HOST_USER_ID/meetings" \
-H "Authorization: Bearer ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"topic": "Team Standup",
"type": 2,
"start_time": "2025-03-15T10:00:00Z",
"duration": 30,
"settings": {
"join_before_host": false,
"waiting_room": true
}
}'
S2S OAuthの場合、パスに明示的なホストユーザーIDまたはメールを使用してください。meは使用しないでください。
ページネーション付きユーザーリスト
curl "https://api.zoom.us/v2/users?page_size=300&status=active" \
-H "Authorization: Bearer ACCESS_TOKEN"
ベースURL
https://api.zoom.us/v2
地域別ベースURL
OAuthトークンレスポンスのapi_urlフィールドは、ユーザーの地域を示します。データレジデンシーコンプライアンスのために地域別URLを使用してください。
| 地域 | URL |
|---|---|
| グローバル (デフォルト) | https://api.zoom.us/v2 |
| オーストラリア | https://api-au.zoom.us/v2 |
| カナダ | https://api-ca.zoom.us/v2 |
| 欧州連合 | https://api-eu.zoom.us/v2 |
| インド | https://api-in.zoom.us/v2 |
| サウジアラビア | https://api-sa.zoom.us/v2 |
| シンガポール | https://api-sg.zoom.us/v2 |
| イギリス | https://api-uk.zoom.us/v2 |
| アメリカ合衆国 | https://api-us.zoom.us/v2 |
注: api_urlの値に関わらず、常にグローバルURL https://api.zoom.usを使用できます。
主要機能
| 機能 | 説明 |
|---|---|
| 会議管理 | 完全なスケジュール制御で会議を作成、読み取り、更新、削除 |
| ユーザープロビジョニング | 自動化されたユーザーライフサイクル (作成、更新、非アクティブ化、削除) |
| ウェビナー操作 | ウェビナーのCRUD、登録者管理、パネリスト制御 |
| クラウドレコーディング | ファイルタイプフィルタリングによるレコーディングのリスト表示、ダウンロード、削除 |
| レポートと分析 | 利用状況レポート、参加者データ、日次統計 |
| チームチャット | チャネル管理、メッセージング、チャットボット統合 |
| Zoom Phone | 通話管理、ボイスメール、通話ルーティング |
| Zoom Rooms | ルーム管理、デバイス制御、スケジュール設定 |
| Webhooks | 100以上のイベントタイプに対するリアルタイムイベント通知 |
| WebSockets | パブリックエンドポイントなしでの永続的なイベントストリーミング |
| GraphQL (ベータ版) | v3/graphqlでの単一エンドポイントの柔軟なクエリ |
| AI Companion | 会議の要約、トランスクリプト、AI生成コンテンツ |
| AIサービス / Scribe | Build-platform JWT認証エンドポイントを介したファイルおよびアーカイブの文字起こし |
前提条件
- Zoomアカウント (無料ティアでもAPIアクセス可能ですが、レート制限が低くなります)
- [Zoom App Marketplace](https:
(原文がここで切り詰められています)
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
/build-zoom-rest-api-app
Background reference for deterministic server-side Zoom automation and resource management. Prefer plan-zoom-product, plan-zoom-integration, or debug-zoom first, then route here for endpoint-level detail.
Zoom REST API
Expert guidance for building server-side integrations with the Zoom REST API. This API provides 600+ endpoints for managing meetings, users, webinars, recordings, reports, and all Zoom platform resources programmatically.
Official Documentation: https://developers.zoom.us/api-hub/
API Hub Reference: https://developers.zoom.us/api-hub/meetings/
OpenAPI Inventories: https://developers.zoom.us/api-hub/<domain>/methods/endpoints.json
Quick Links
New to Zoom REST API? Follow this path:
- API Architecture - Base URLs, regional URLs,
mekeyword, ID vs UUID, time formats - Authentication Flows - OAuth setup (S2S, User, PKCE, Device Code)
- Meeting URLs vs Meeting SDK - Stop mixing
join_urlwith Meeting SDK - Meeting Lifecycle - Create → Update → Start → End → Delete with webhooks
- Rate Limiting Strategy - Plan tiers, per-user limits, retry patterns
Reference:
- Meetings - Meeting CRUD, types, settings
- Users - User provisioning and management
- Recordings - Cloud recording access and download
- AI Services - Scribe endpoint inventory and current AI Services path surface
- GraphQL Queries - Alternative query API (beta)
- Integrated Index - see the section below in this file
Most domain files under references/ are aligned to the official API Hub endpoints.json inventories. Treat those files as the local source of truth for method/path discovery.
Having issues?
- Start with preflight checks → 5-Minute Runbook
- 401 Unauthorized → Authentication Flows (check token expiry, scopes)
- 429 Too Many Requests → Rate Limiting Strategy
- Error codes → Common Errors
- Pagination confusion → Common Issues
- Webhooks not arriving → Webhook Server
- Forum-derived FAQs → Forum Top Questions
- Token/scope failures → Token + Scope Playbook
Building event-driven integrations?
- Webhook Server - Express.js server with CRC validation
- Recording Pipeline - Auto-download via webhook events
Quick Start
Get an Access Token (Server-to-Server OAuth)
curl -X POST "https://zoom.us/oauth/token" \
-H "Authorization: Basic $(echo -n 'CLIENT_ID:CLIENT_SECRET' | base64)" \
-H "Content-Type: application/x-www-form-urlencoded" \
-d "grant_type=account_credentials&account_id=ACCOUNT_ID"
Response:
{
"access_token": "eyJhbGciOiJIUzI1NiJ9...",
"token_type": "bearer",
"expires_in": 3600,
"scope": "meeting:read meeting:write user:read"
}
Create a Meeting
curl -X POST "https://api.zoom.us/v2/users/HOST_USER_ID/meetings" \
-H "Authorization: Bearer ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"topic": "Team Standup",
"type": 2,
"start_time": "2025-03-15T10:00:00Z",
"duration": 30,
"settings": {
"join_before_host": false,
"waiting_room": true
}
}'
For S2S OAuth, use an explicit host user ID or email in the path. Do not use me.
List Users with Pagination
curl "https://api.zoom.us/v2/users?page_size=300&status=active" \
-H "Authorization: Bearer ACCESS_TOKEN"
Base URL
https://api.zoom.us/v2
Regional Base URLs
The api_url field in OAuth token responses indicates the user's region. Use regional URLs for data residency compliance:
| Region | URL |
|---|---|
| Global (default) | https://api.zoom.us/v2 |
| Australia | https://api-au.zoom.us/v2 |
| Canada | https://api-ca.zoom.us/v2 |
| European Union | https://api-eu.zoom.us/v2 |
| India | https://api-in.zoom.us/v2 |
| Saudi Arabia | https://api-sa.zoom.us/v2 |
| Singapore | https://api-sg.zoom.us/v2 |
| United Kingdom | https://api-uk.zoom.us/v2 |
| United States | https://api-us.zoom.us/v2 |
Note: You can always use the global URL https://api.zoom.us regardless of the api_url value.
Key Features
| Feature | Description |
|---|---|
| Meeting Management | Create, read, update, delete meetings with full scheduling control |
| User Provisioning | Automated user lifecycle (create, update, deactivate, delete) |
| Webinar Operations | Webinar CRUD, registrant management, panelist control |
| Cloud Recordings | List, download, delete recordings with file-type filtering |
| Reports & Analytics | Usage reports, participant data, daily statistics |
| Team Chat | Channel management, messaging, chatbot integration |
| Zoom Phone | Call management, voicemail, call routing |
| Zoom Rooms | Room management, device control, scheduling |
| Webhooks | Real-time event notifications for 100+ event types |
| WebSockets | Persistent event streaming without public endpoints |
| GraphQL (Beta) | Single-endpoint flexible queries at v3/graphql |
| AI Companion | Meeting summaries, transcripts, AI-generated content |
| AI Services / Scribe | File and archive transcription via Build-platform JWT-authenticated endpoints |
Prerequisites
- Zoom account (Free tier has API access with lower rate limits)
- App registered on Zoom App Marketplace
- OAuth credentials (Server-to-Server OAuth or User OAuth)
- Appropriate scopes for target endpoints
Need help with authentication? See the zoom-oauth skill for complete OAuth flow implementation.
Critical Gotchas and Best Practices
⚠️ JWT App Type is Deprecated
The JWT app type is deprecated. Migrate to Server-to-Server OAuth. This does NOT affect JWT token signatures used in Video SDK — only the Marketplace "JWT" app type for REST API access.
// OLD (JWT app type - DEPRECATED)
const token = jwt.sign({ iss: apiKey, exp: expiry }, apiSecret);
// NEW (Server-to-Server OAuth)
const token = await getServerToServerToken(accountId, clientId, clientSecret);
⚠️ The me Keyword Rules
- User-level OAuth apps: MUST use
meinstead ofuserId(otherwise: invalid token error) - Server-to-Server OAuth apps: MUST NOT use
me— provide the actualuserIdor email - Account-level OAuth apps: Can use either
meoruserId
⚠️ Meeting ID vs UUID — Double Encoding
UUIDs that begin with / or contain // must be double URL-encoded:
// UUID: /abc==
// Single encode: %2Fabc%3D%3D
// Double encode: %252Fabc%253D%253D ← USE THIS
const uuid = '/abc==';
const encoded = encodeURIComponent(encodeURIComponent(uuid));
const url = `https://api.zoom.us/v2/meetings/${encoded}`;
⚠️ Time Formats
yyyy-MM-ddTHH:mm:ssZ— UTC time (note theZsuffix)yyyy-MM-ddTHH:mm:ss— Local time (noZ, usestimezonefield)- Some report APIs only accept UTC. Check the API reference for each endpoint.
⚠️ Rate Limits Are Per-Account, Not Per-App
All apps on the same Zoom account share rate limits. One heavy app can impact others. Monitor X-RateLimit-Remaining headers proactively.
⚠️ Per-User Daily Limits
Meeting/Webinar create/update operations are limited to 100 per day per user (resets at 00:00 UTC). Distribute operations across different host users when doing bulk operations.
⚠️ Download URLs Require Auth and Follow Redirects
Recording download_url values require Bearer token authentication and may redirect. Always follow redirects:
curl -L -H "Authorization: Bearer ACCESS_TOKEN" "https://zoom.us/rec/download/..."
Use Webhooks Instead of Polling
// DON'T: Poll every minute (wastes API quota)
setInterval(() => getMeetings(), 60000);
// DO: Receive webhook events in real-time
app.post('/webhook', (req, res) => {
if (req.body.event === 'meeting.started') {
handleMeetingStarted(req.body.payload);
}
res.status(200).send();
});
Webhook setup details: See the zoom-webhooks skill for comprehensive webhook implementation.
Complete Documentation Library
This skill includes comprehensive guides organized by category:
Core Concepts
- API Architecture - REST design, base URLs, regional routing,
mekeyword, ID vs UUID, time formats - Authentication Flows - All OAuth flows (S2S, User, PKCE, Device Code)
- Rate Limiting Strategy - Limits by plan, retry patterns, request queuing
Complete Examples
- Meeting Lifecycle - Full Create → Update → Start → End → Delete flow with webhook events
- User Management - CRUD users, list with pagination, bulk operations
- Recording Pipeline - Download recordings via webhooks + API
- Webhook Server - Express.js server with CRC validation and signature verification
- GraphQL Queries - GraphQL queries, mutations, cursor pagination
Troubleshooting
- Common Errors - HTTP status codes, Zoom error codes, error response formats
- Common Issues - Rate limits, token refresh, pagination pitfalls, gotchas
References (39 files covering all Zoom API domains)
Core APIs
- references/meetings.md - Meeting CRUD, types, settings
- references/users.md - User provisioning, types, scopes
- references/webinars.md - Webinar management, registrants
- references/recordings.md - Cloud recording access
- references/reports.md - Usage reports, analytics
- references/accounts.md - Account management
Communication
- references/team-chat.md - Team Chat messaging
- references/chatbot.md - Interactive chatbots
- references/phone.md - Zoom Phone
- references/mail.md - Zoom Mail
- references/calendar.md - Zoom Calendar
Infrastructure
- references/rooms.md - Zoom Rooms
- references/scim2.md - SCIM 2.0 provisioning APIs
- references/rate-limits.md - Rate limit details
- references/qss.md - Quality of Service Subscription
Advanced
- references/graphql.md - GraphQL API (beta)
- references/ai-companion.md - AI features
- references/authentication.md - Auth reference
- references/openapi.md - OpenAPI specs, Postman, code generation
Additional API Domains
- references/events.md - Events and event platform APIs
- references/scheduler.md - Zoom Scheduler APIs
- references/tasks.md - Tasks APIs
- references/whiteboard.md - Whiteboard APIs
- references/video-management.md - Video management APIs
- references/video-sdk-api.md - Video SDK REST APIs
- references/marketplace-apps.md - Marketplace app management
- references/commerce.md - Commerce and billing APIs
- references/contact-center.md - Contact Center APIs
- references/quality-management.md - Quality management APIs
- references/workforce-management.md - Workforce management APIs
- references/healthcare.md - Healthcare APIs
- references/auto-dialer.md - Auto dialer APIs
- references/number-management.md - Number management APIs
- references/revenue-accelerator.md - Revenue Accelerator APIs
- references/virtual-agent.md - Virtual Agent APIs
- references/cobrowse-sdk-api.md - Cobrowse SDK APIs
- references/crc.md - Cloud Room Connector APIs
- references/clips.md - Clips APIs
- references/zoom-docs.md - Zoom docs and source references
Sample Repositories
Official (by Zoom)
| Type | Repository |
|---|---|
| OAuth Sample | oauth-sample-app |
| S2S OAuth Starter | server-to-server-oauth-starter-api |
| User OAuth | user-level-oauth-starter |
| S2S Token | server-to-server-oauth-token |
| Rivet Library | rivet-javascript |
| WebSocket Sample | websocket-js-sample |
| Webhook Sample | webhook-sample-node.js |
| Python S2S | server-to-server-python-sample |
Resources
- API Reference: https://developers.zoom.us/api-hub/
- GraphQL Playground: https://nws.zoom.us/graphql/playground
- Postman Collection: https://marketplace.zoom.us/docs/api-reference/postman
- Developer Forum: https://devforum.zoom.us/
- Changelog: https://developers.zoom.us/changelog/
- Status Page: https://status.zoom.us/
Need help? Start with Integrated Index section below for complete navigation.
Integrated Index
This section was migrated from SKILL.md.
Quick Start Path
If you're new to the Zoom REST API, follow this order:
-
Run preflight checks first → RUNBOOK.md
-
Understand the API design → concepts/api-architecture.md
- Base URLs, regional endpoints,
mekeyword rules - Meeting ID vs UUID, double-encoding, time formats
- Base URLs, regional endpoints,
-
Set up authentication → concepts/authentication-flows.md
- Server-to-Server OAuth (backend automation)
- User OAuth with PKCE (user-facing apps)
- Cross-reference: zoom-oauth
-
Create your first meeting → examples/meeting-lifecycle.md
- Full CRUD with curl and Node.js examples
- Webhook event integration
-
Handle rate limits → concepts/rate-limiting-strategy.md
- Plan-based limits, retry patterns, request queuing
-
Set up webhooks → examples/webhook-server.md
- CRC validation, signature verification, event handling
-
Troubleshoot issues → troubleshooting/common-issues.md
- Token refresh, pagination pitfalls, common gotchas
Documentation Structure
rest-api/
├── SKILL.md # Main skill overview + quick start
├── SKILL.md # This file - navigation guide
│
├── concepts/ # Core architectural concepts
│ ├── api-architecture.md # REST design, URLs, IDs, time formats
│ ├── authentication-flows.md # OAuth flows (S2S, User, PKCE, Device)
│ └── rate-limiting-strategy.md # Limits by plan, retry, queuing
│
├── examples/ # Complete working code
│ ├── meeting-lifecycle.md # Create→Update→Start→End→Delete
│ ├── user-management.md # CRUD users, pagination, bulk ops
│ ├── recording-pipeline.md # Download recordings via webhooks
│ ├── webhook-server.md # Express.js CRC + signature verification
│ └── graphql-queries.md # GraphQL queries, mutations, pagination
│
├── troubleshooting/ # Problem solving
│ ├── common-errors.md # HTTP codes, Zoom error codes table
│ └── common-issues.md # Rate limits, tokens, pagination pitfalls
│
└── references/ # 39 domain-specific reference files
├── authentication.md # Auth methods reference
├── meetings.md # Meeting endpoints
├── users.md # User management endpoints
├── webinars.md # Webinar endpoints
├── recordings.md # Cloud recording endpoints
├── reports.md # Reports & analytics
├── accounts.md # Account management
├── rate-limits.md # Rate limit details
├── graphql.md # GraphQL API (beta)
├── zoom-team-chat.md # Team Chat messaging
├── chatbot.md # Chatbot integration
├── phone.md # Zoom Phone
├── rooms.md # Zoom Rooms
├── calendar.md # Zoom Calendar
├── mail.md # Zoom Mail
├── ai-companion.md # AI features
├── openapi.md # OpenAPI specs
├── qss.md # Quality of Service
├── contact-center.md # Contact Center
├── events.md # Zoom Events
├── whiteboard.md # Whiteboard
├── clips.md # Zoom Clips
├── scheduler.md # Scheduler
├── scim2.md # SCIM 2.0
├── marketplace-apps.md # App management
├── zoom-video-sdk-api.md # Video SDK REST
└── ... (39 total files)
By Use Case
I want to create and manage meetings
- API Architecture - Base URL, time formats
- Meeting Lifecycle - Full CRUD + webhook events
- Meetings Reference - All endpoints, types, settings
I want to manage users programmatically
- User Management - CRUD, pagination, bulk ops
- Users Reference - Endpoints, user types, scopes
I want to download recordings automatically
- Recording Pipeline - Webhook-triggered downloads
- Recordings Reference - File types, download auth
I want to receive real-time events
- Webhook Server - CRC validation, signature check
- Cross-reference: zoom-webhooks for comprehensive webhook docs
- Cross-reference: zoom-websockets for WebSocket events
I want to use GraphQL instead of REST
- GraphQL Queries - Queries, mutations, pagination
- GraphQL Reference - Available entities, scopes, rate limits
I want to set up authentication
- Authentication Flows - All OAuth methods
- Cross-reference: zoom-oauth for full OAuth implementation
I'm hitting rate limits
- Rate Limiting Strategy - Limits by plan, strategies
- Rate Limits Reference - Detailed tables
- Common Issues - Practical solutions
I'm getting errors
- Common Errors - Error code tables
- Common Issues - Diagnostic workflow
I want to build webinars
- Webinars Reference - Endpoints, types, registrants
- Meeting Lifecycle - Similar patterns apply
I want to integrate Zoom Phone
- Phone Reference - Phone API endpoints
- Rate Limiting Strategy - Separate Phone rate limits
Most Critical Documents
1. API Architecture (FOUNDATION)
Essential knowledge before making any API call:
- Base URLs and regional endpoints
- The
mekeyword rules (different per app type!) - Meeting ID vs UUID double-encoding
- ISO 8601 time formats (UTC vs local)
- Download URL authentication
2. Rate Limiting Strategy (MOST COMMON PRODUCTION ISSUE)
concepts/rate-limiting-strategy.md
Rate limits are per-account, shared across all apps:
- Free: 4/sec Light, 2/sec Medium, 1/sec Heavy
- Pro: 30/sec Light, 20/sec Medium, 10/sec Heavy
- Business+: 80/sec Light, 60/sec Medium, 40/sec Heavy
- Per-user: 100 meeting create/update per day
3. Meeting Lifecycle (MOST COMMON TASK)
Complete CRUD with webhook integration — the pattern most developers need first.
Key Learnings
Critical Discoveries:
-
JWT app type is deprecated — use Server-to-Server OAuth
- The JWT app type on Marketplace is deprecated, NOT JWT token signatures
- See: Authentication Flows
-
mekeyword behaves differently by app type- User OAuth: MUST use
me - S2S OAuth: MUST NOT use
me - See: API Architecture
- User OAuth: MUST use
-
Rate limiting is nuanced (don’t assume a single global rule)
- Limits can vary by endpoint and may be enforced at account/app/user levels
- Treat quotas as potentially shared across your account and implement backoff
- Monitor rate limit response headers (for example
X-RateLimit-Remaining) - See: Rate Limiting Strategy
-
100 meeting creates per user per day
- This is a hard per-user limit, not related to rate limits
- Distribute across host users for bulk operations
- See: Rate Limiting Strategy
-
UUID double-encoding is required for certain UUIDs
- UUIDs starting with
/or containing//must be double-encoded - See: API Architecture
- UUIDs starting with
-
Pagination: use
next_page_token, notpage_numberpage_numberis legacy and being phased outnext_page_tokenis the recommended approach- See: Common Issues
-
GraphQL is at
/v3/graphql, not/v2/- Single endpoint, cursor-based pagination
- Rate limits apply per-field (each field = one REST equivalent)
- See: GraphQL Queries
Quick Reference
"401 Unauthorized"
→ Authentication Flows - Token expired or wrong scopes
"429 Too Many Requests"
→ Rate Limiting Strategy - Check headers for reset time
"Invalid token" when using userId
→ API Architecture - User OAuth apps must use me
"How do I paginate results?"
→ Common Issues - Use next_page_token
"Webhooks not arriving"
→ Webhook Server - CRC validation required
"Recording download fails"
→ Recording Pipeline - Bearer auth + follow redirects
"How do I create a meeting?"
→ Meeting Lifecycle - Full working examples
Related Skills
| Skill | Use When |
|---|---|
| zoom-oauth | Implementing OAuth flows, token management |
| zoom-webhooks | Deep webhook implementation, event catalog |
| zoom-websockets | WebSocket event streaming |
| zoom-general | Cross-product patterns, community repos |
Based on Zoom REST API v2 (current) and GraphQL v3 (beta)
Environment Variables
- See references/environment-variables.md for standardized
.envkeys and where to find each value.
同梱ファイル
※ ZIPに含まれるファイル一覧。`SKILL.md` 本体に加え、参考資料・サンプル・スクリプトが入っている場合があります。
- 📄 SKILL.md (26,477 bytes)
- 📎 references/accounts.md (7,657 bytes)
- 📎 references/ai-companion.md (1,222 bytes)
- 📎 references/ai-services.md (1,564 bytes)
- 📎 references/authentication.md (11,320 bytes)
- 📎 references/auto-dialer.md (2,706 bytes)
- 📎 references/calendar.md (5,002 bytes)
- 📎 references/chatbot.md (1,451 bytes)
- 📎 references/clips.md (2,936 bytes)
- 📎 references/cobrowse-sdk-api.md (1,438 bytes)
- 📎 references/commerce.md (5,980 bytes)
- 📎 references/contact-center.md (33,905 bytes)
- 📎 references/crc.md (3,602 bytes)
- 📎 references/environment-variables.md (976 bytes)
- 📎 references/events.md (13,337 bytes)
- 📎 references/graphql.md (9,126 bytes)
- 📎 references/healthcare.md (1,358 bytes)
- 📎 references/mail.md (7,020 bytes)
- 📎 references/marketplace-apps.md (4,090 bytes)
- 📎 references/meetings.md (21,768 bytes)
- 📎 references/number-management.md (4,872 bytes)
- 📎 references/openapi.md (4,534 bytes)
- 📎 references/phone.md (47,047 bytes)
- 📎 references/qss.md (1,642 bytes)
- 📎 references/quality-management.md (1,739 bytes)
- 📎 references/rate-limits.md (10,160 bytes)
- 📎 references/recordings.md (1,397 bytes)
- 📎 references/reports.md (1,261 bytes)
- 📎 references/revenue-accelerator.md (9,575 bytes)
- 📎 references/rooms.md (15,712 bytes)
- 📎 references/scheduler.md (3,920 bytes)
- 📎 references/scim2.md (1,939 bytes)
- 📎 references/tasks.md (2,682 bytes)
- 📎 references/team-chat.md (13,864 bytes)
- 📎 references/users.md (7,486 bytes)
- 📎 references/video-management.md (4,104 bytes)
- 📎 references/video-sdk-api.md (5,475 bytes)
- 📎 references/virtual-agent.md (2,258 bytes)
- 📎 references/webinars.md (1,191 bytes)
- 📎 references/whiteboard.md (5,446 bytes)
- 📎 references/workforce-management.md (3,195 bytes)
- 📎 references/zoom-docs.md (3,316 bytes)