Zoom から GPT-4、Google Docs、Slack を使用して AI 会議記録を生成
中級
これはAI Summarization, Multimodal AI分野の自動化ワークフローで、6個のノードを含みます。主にCode, Slack, OpenAi, Webhook, GoogleDocsなどのノードを使用。 Zoom から GPT-4、Google Docs、Slack を使って AI 会議記録を生成する
前提条件
- •Slack Bot Token または Webhook URL
- •OpenAI API Key
- •HTTP Webhookエンドポイント(n8nが自動生成)
ワークフロープレビュー
ノード接続関係を可視化、ズームとパンをサポート
ワークフローをエクスポート
以下のJSON設定をn8nにインポートして、このワークフローを使用できます
{
"meta": {
"instanceId": "2000c64071c20843606b95c63795bb0797c41036047055a6586498e855b96efc"
},
"nodes": [
{
"id": "350fef5e-f003-412d-a061-7dd3165d6055",
"name": "Zoom Meeting Webhook",
"type": "n8n-nodes-base.webhook",
"position": [
-192,
256
],
"webhookId": "0ffbeb1c-79eb-4f91-afc7-c1b9878f6e2c",
"parameters": {
"path": "zoom-meeting-ended",
"options": {},
"httpMethod": "POST"
},
"typeVersion": 1
},
{
"id": "ddd1c9c7-8f7c-4c1b-8075-43a27febb40d",
"name": "データ正規化",
"type": "n8n-nodes-base.code",
"position": [
48,
256
],
"parameters": {
"jsCode": "// Normalize Zoom payload\nconst e = $input.first().json;\n\nreturn {\n json: {\n meeting_id: e.payload.object.id,\n topic: e.payload.object.topic,\n host: e.payload.object.host_email,\n start_time: e.payload.object.start_time,\n end_time: e.payload.object.end_time,\n duration: e.payload.object.duration,\n participants: e.payload.object.participant_count || 0,\n transcript: e.payload.object.transcript || '', // if transcript available\n timestamp: new Date().toISOString()\n }\n};"
},
"typeVersion": 2
},
{
"id": "00538f67-0cad-4e9c-ba72-d4744470c772",
"name": "AI議事録生成",
"type": "n8n-nodes-base.openAi",
"position": [
256,
256
],
"parameters": {
"resource": "chat",
"operation": "create",
"requestOptions": {}
},
"typeVersion": 1
},
{
"id": "de229a4a-d353-4a0b-b6c4-010ca22e3e50",
"name": "Google Docsに保存",
"type": "n8n-nodes-base.googleDocs",
"position": [
496,
256
],
"parameters": {
"title": "Meeting Notes - {{ $json.topic }} - {{ $json.timestamp }}"
},
"typeVersion": 2
},
{
"id": "07bdd64e-bdb8-470e-a3e6-604f51c2ac66",
"name": "Slackに投稿",
"type": "n8n-nodes-base.slack",
"position": [
720,
256
],
"parameters": {
"text": "📝 *New Meeting Notes Available*\\n*Topic:* {{ $('Normalize Data').item.json.topic }}\\n*Host:* {{ $('Normalize Data').item.json.host }}\\n*Duration:* {{ $('Normalize Data').item.json.duration }} mins\\n\\n👉 Read full notes here: {{ $('Save to Google Docs').item.json.webViewLink }}",
"channel": "#team-meetings",
"attachments": [],
"otherOptions": {},
"authentication": "oAuth2"
},
"typeVersion": 1
},
{
"id": "a21376f0-b3a7-4c50-ad69-81793a723242",
"name": "セットアップ手順",
"type": "n8n-nodes-base.stickyNote",
"position": [
-192,
-64
],
"parameters": {
"width": 432,
"height": 384,
"content": "## 🛠️ Setup Steps\n### 1. Zoom App\n- Go to Zoom Developer Console → create App. \n- Enable event **`meeting.ended`**. \n- Paste workflow webhook URL.\n\n### 2. Google Docs\n- Connect Google OAuth in n8n. \n- Docs auto-saved in your Google Drive.\n\n### 3. Slack\n- Connect Slack OAuth. \n- Replace channel `#team-meetings`.\n\n### 4. OpenAI\n- Add your OpenAI API key. \n- Uses **GPT-4** for accurate summaries.\n\n---"
},
"typeVersion": 1
}
],
"pinData": {},
"connections": {
"ddd1c9c7-8f7c-4c1b-8075-43a27febb40d": {
"main": [
[
{
"node": "00538f67-0cad-4e9c-ba72-d4744470c772",
"type": "main",
"index": 0
}
]
]
},
"00538f67-0cad-4e9c-ba72-d4744470c772": {
"main": [
[
{
"node": "de229a4a-d353-4a0b-b6c4-010ca22e3e50",
"type": "main",
"index": 0
}
]
]
},
"de229a4a-d353-4a0b-b6c4-010ca22e3e50": {
"main": [
[
{
"node": "07bdd64e-bdb8-470e-a3e6-604f51c2ac66",
"type": "main",
"index": 0
}
]
]
},
"350fef5e-f003-412d-a061-7dd3165d6055": {
"main": [
[
{
"node": "ddd1c9c7-8f7c-4c1b-8075-43a27febb40d",
"type": "main",
"index": 0
}
]
]
}
}
}よくある質問
このワークフローの使い方は?
上記のJSON設定コードをコピーし、n8nインスタンスで新しいワークフローを作成して「JSONからインポート」を選択、設定を貼り付けて認証情報を必要に応じて変更してください。
このワークフローはどんな場面に適していますか?
中級 - AI要約, マルチモーダルAI
有料ですか?
このワークフローは完全無料です。ただし、ワークフローで使用するサードパーティサービス(OpenAI APIなど)は別途料金が発生する場合があります。
関連ワークフロー
Zoomの録画をGPT-4で自動要約し、Slackとメールに送信
Zoom録画をGPT-4で自動要約してSlackとメールに送信
Code
Gmail
Slack
+
Code
Gmail
Slack
6 ノードDavid Olusola
AI要約
AIがGoogle Docsの更新を週次で要約 → メール送信
GPT-4 を使用して、Google ドキュメントから毎週の文書の概要を生成して電子メールで送信する
Code
Cron
Gmail
+
Code
Cron
Gmail
10 ノードDavid Olusola
AI要約
新しいCalendly予約をGoogleスプレッドシートに自動追加
新規Calendly予約を自動のにGoogleスプレッドシートに追加
Code
Webhook
Google Sheets
+
Code
Webhook
Google Sheets
5 ノードDavid Olusola
顧客管理
Zoom参加者のために自動Airtable CRM記録作成
Zoom参加者に対して自動のにAirtable CRMレコードを作成
Code
Webhook
Airtable
+
Code
Webhook
Airtable
4 ノードDavid Olusola
顧客管理
Instagram のリーチを Google テーブルに自動保存
Instagram からのリードを自動のに Google スプレッドシートに保存
Code
Webhook
Google Sheets
+
Code
Webhook
Google Sheets
4 ノードDavid Olusola
リード獲得
Zoom の録画を Google ドライブに保存し、Airtable にメーティング記録を加える
Zoom 録画を Google ドライブに自動保存し、Airtable でメッセージを記録
Code
Webhook
Airtable
+
Code
Webhook
Airtable
7 ノードDavid Olusola
ファイル管理
ワークフロー情報
難易度
中級
ノード数6
カテゴリー2
ノードタイプ6
作成者
David Olusola
@dae221I help ambitious businesses eliminate operational bottlenecks and scale faster with AI automation. My clients typically see 40-60% efficiency gains within 90 days. Currently accepting 3 new projects this quarter - david@daexai.com
外部リンク
n8n.ioで表示 →
このワークフローを共有