💼 ビジネス コミュニティ
contact-center/android
Zoom Contact Center SDK for Android. Use for native Android chat/video/ZVA/scheduled callback integrations, campaign mode, service lifecycle, and rejoin handling.
⚡ おすすめ: コマンド1行でインストール(60秒)
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o contact-center-android.zip https://jpskill.com/download/22676.zip && unzip -o contact-center-android.zip && rm contact-center-android.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/22676.zip -OutFile "$d\contact-center-android.zip"; Expand-Archive "$d\contact-center-android.zip" -DestinationPath $d -Force; ri "$d\contact-center-android.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
contact-center-android.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
contact-center-androidフォルダができる - 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
- 同梱ファイル
- 2
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
Zoom Contact Center SDK - Android
公式ドキュメント:
- https://developers.zoom.us/docs/contact-center/android/
- https://marketplacefront.zoom.us/sdk/contact/android/index.html
クイックリンク
- concepts/sdk-lifecycle.md
- examples/service-patterns.md
- references/android-reference-map.md
- troubleshooting/common-issues.md
SDK サーフェスの概要
- SDK マネージャー:
ZoomCCInterface - チャネルサービス:
getZoomCCChatService()getZoomCCVideoService()getZoomCCZVAService()getZoomCCScheduledCallbackService()- ウェブキャンペーンサービスとキャンペーンメタデータによるキャンペーンサポート。
厳格なガイドライン
Application.onCreateで SDK を初期化してください。- チャネルと識別子を定義するには
ZoomCCItemを使用してください。 - チャット/ビデオ/ZVA には
entryIdを使用してください。 - スケジュールされたコールバックとキャンペーンモードには
apiKeyを使用してください。 - 解体時にサービスを解放してください。
一般的な連携
- コンタクトセンターアプリとエンゲージメントコンテキスト: ../../zoom-apps-sdk/SKILL.md
- コンタクトセンター API 自動化: ../../rest-api/SKILL.md
操作
- RUNBOOK.md - 5分間の事前確認とデバッグチェックリスト。
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
Zoom Contact Center SDK - Android
Official docs:
- https://developers.zoom.us/docs/contact-center/android/
- https://marketplacefront.zoom.us/sdk/contact/android/index.html
Quick Links
- concepts/sdk-lifecycle.md
- examples/service-patterns.md
- references/android-reference-map.md
- troubleshooting/common-issues.md
SDK Surface Summary
- SDK manager:
ZoomCCInterface - Channel services:
getZoomCCChatService()getZoomCCVideoService()getZoomCCZVAService()getZoomCCScheduledCallbackService()- Campaign support via web campaign service and campaign metadata.
Hard Guardrails
- Initialize SDK in
Application.onCreate. - Use
ZoomCCItemto define channel + identifiers. - Use
entryIdfor chat/video/ZVA. - Use
apiKeyfor scheduled callback and campaign mode. - Release services on teardown.
Common Chains
- Contact Center app and engagement context: ../../zoom-apps-sdk/SKILL.md
- Contact Center API automation: ../../rest-api/SKILL.md
Operations
- RUNBOOK.md - 5-minute preflight and debugging checklist.
同梱ファイル
※ ZIPに含まれるファイル一覧。`SKILL.md` 本体に加え、参考資料・サンプル・スクリプトが入っている場合があります。
- 📄 SKILL.md (1,693 bytes)
- 📎 references/android-reference-map.md (1,035 bytes)