Automatisches Zusammenfassen von Zoom-Aufzeichnungen mit GPT-4 und Senden an Slack und E-Mail
Dies ist ein AI Summarization, Multimodal AI-Bereich Automatisierungsworkflow mit 6 Nodes. Hauptsächlich werden Code, Gmail, Slack, OpenAi, Webhook und andere Nodes verwendet. Automatisches Zusammenfassen von Zoom-Aufnahmen mit GPT-4 und Senden an Slack und E-Mail
- •Google-Konto + Gmail API-Anmeldedaten
- •Slack Bot Token oder Webhook URL
- •OpenAI API Key
- •HTTP Webhook-Endpunkt (wird von n8n automatisch generiert)
Kategorie
{
"meta": {
"instanceId": "2000c64071c20843606b95c63795bb0797c41036047055a6586498e855b96efc"
},
"nodes": [
{
"id": "ca5b18c5-d621-47ac-be74-fbaec366f1da",
"name": "Zoom Recording Webhook-Trigger",
"type": "n8n-nodes-base.webhook",
"position": [
752,
176
],
"webhookId": "4dafe0e9-12dd-4c46-bcfb-04a0d5474017",
"parameters": {
"path": "zoom-summary",
"options": {},
"httpMethod": "POST"
},
"typeVersion": 1
},
{
"id": "fc122ffd-0de5-4b06-bf20-188b724b7af9",
"name": "Daten normalisieren",
"type": "n8n-nodes-base.code",
"position": [
992,
176
],
"parameters": {
"jsCode": "// Normalize Zoom payload\nconst e = $input.first().json;\nconst rec = e.payload.object.recording_files[0];\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 transcript: e.payload.object.transcript || '',\n download_url: rec.download_url,\n file_type: rec.file_type,\n file_size: rec.file_size,\n created_at: e.payload.object.start_time,\n timestamp: new Date().toISOString()\n }\n};"
},
"typeVersion": 2
},
{
"id": "ddf58f82-e938-4687-86a0-58001f8b2a9a",
"name": "KI-Zusammenfassung",
"type": "n8n-nodes-base.openAi",
"position": [
1232,
176
],
"parameters": {
"resource": "chat",
"operation": "create",
"requestOptions": {}
},
"typeVersion": 1
},
{
"id": "bf9d2436-4ddc-4123-b66b-75d954c32d49",
"name": "Post to Slack",
"type": "n8n-nodes-base.slack",
"position": [
1472,
96
],
"parameters": {
"text": "📌 *Zoom Summary*\\n\\n*Topic:* {{ $('Normalize Data').item.json.topic }}\\n*Host:* {{ $('Normalize Data').item.json.host }}\\n*Date:* {{ $('Normalize Data').item.json.created_at }}\\n\\n*Summary:*\\n{{ $json.choices[0].message.content }}",
"channel": "YOUR_SLACK_CHANNEL",
"attachments": [],
"otherOptions": {}
},
"typeVersion": 1
},
{
"id": "44511951-5053-4da4-a512-90bdc946070e",
"name": "E-Mail senden",
"type": "n8n-nodes-base.gmail",
"position": [
1472,
256
],
"webhookId": "1389e4a7-e93e-4482-b028-fcb61c8df0d4",
"parameters": {
"message": "Meeting hosted by {{ $('Normalize Data').item.json.host }} on {{ $('Normalize Data').item.json.created_at }}\\n\\nSummary:\\n{{ $json.choices[0].message.content }}",
"options": {},
"subject": "Zoom Meeting Summary: {{ $('Normalize Data').item.json.topic }}"
},
"typeVersion": 2
},
{
"id": "146b143b-cc95-4b7c-8900-8b1f879b0347",
"name": "Einrichtungsanleitung",
"type": "n8n-nodes-base.stickyNote",
"position": [
752,
-16
],
"parameters": {
"content": "## 🛠️ Setup Steps\n### 1. Zoom\n- Create a Zoom App with the **`recording.completed`** event. \n- Add workflow webhook URL.\n\n### 2. OpenAI\n- Add your **API key** to n8n. \n- Use **GPT-4** for best results.\n\n### 3. Slack\n- Connect Slack credentials. \n- Replace `YOUR_SLACK_CHANNEL` with your channel ID. \n\n### 4. Email\n- Connect Gmail or SMTP. \n- Replace recipient email(s). \n"
},
"typeVersion": 1
}
],
"pinData": {},
"connections": {
"ddf58f82-e938-4687-86a0-58001f8b2a9a": {
"main": [
[
{
"node": "bf9d2436-4ddc-4123-b66b-75d954c32d49",
"type": "main",
"index": 0
},
{
"node": "44511951-5053-4da4-a512-90bdc946070e",
"type": "main",
"index": 0
}
]
]
},
"fc122ffd-0de5-4b06-bf20-188b724b7af9": {
"main": [
[
{
"node": "ddf58f82-e938-4687-86a0-58001f8b2a9a",
"type": "main",
"index": 0
}
]
]
},
"Zoom Recording Webhook": {
"main": [
[
{
"node": "fc122ffd-0de5-4b06-bf20-188b724b7af9",
"type": "main",
"index": 0
}
]
]
}
}
}Wie verwende ich diesen Workflow?
Kopieren Sie den obigen JSON-Code, erstellen Sie einen neuen Workflow in Ihrer n8n-Instanz und wählen Sie "Aus JSON importieren". Fügen Sie die Konfiguration ein und passen Sie die Anmeldedaten nach Bedarf an.
Für welche Szenarien ist dieser Workflow geeignet?
Fortgeschritten - KI-Zusammenfassung, Multimodales KI
Ist es kostenpflichtig?
Dieser Workflow ist völlig kostenlos. Beachten Sie jedoch, dass Drittanbieterdienste (wie OpenAI API), die im Workflow verwendet werden, möglicherweise kostenpflichtig sind.
Verwandte Workflows
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
Diesen Workflow teilen