Kaffeeundcode
n8n Flow-Bibliothek
n8n Workflow 01.06.2026

Flow Arbeitsbereich

Meeting Summary Processor

Flow prüfen, Nodes verstehen, JSON importieren und Credentials sauber anpassen.

Workflow Diagramm

auto-generiert
graph LR
    N0(["⚡ Webhook (Upload)"])
    N1["🔧 AI Summarize"]
    N2[["📤 Email Summary"]]
    N0 --> N1
    N1 --> N2

    classDef trigger fill:#f59e0b,stroke:#b45309,color:#000
    classDef action fill:#292524,stroke:#44403c,color:#e7e5e4
    classDef logic fill:#1e1b4b,stroke:#4338ca,color:#c7d2fe
    class N0 trigger
    class N1 action
    class N2 action

37_Meeting_Summary_processor.json

{
    "name": "37_Meeting_Summary_processor",
    "nodes": [
        {
            "parameters": {
                "httpMethod": "POST",
                "path": "process-transcript",
                "options": {}
            },
            "name": "Webhook (Upload)",
            "type": "n8n-nodes-base.webhook",
            "typeVersion": 1,
            "position": [
                250,
                300
            ]
        },
        {
            "parameters": {
                "model": "gpt-4-turbo-preview",
                "prompt": {
                    "messages": [
                        {
                            "role": "system",
                            "content": "Summarize the following meeting transcript and extract action items."
                        },
                        {
                            "role": "user",
                            "content": "={{ $json.body.transcript }}"
                        }
                    ]
                },
                "options": {}
            },
            "name": "AI Summarize",
            "type": "n8n-nodes-base.openAi",
            "typeVersion": 1,
            "position": [
                450,
                300
            ],
            "credentials": {
                "openAiApi": {
                    "id": "YOUR_OPENAI_CREDENTIAL_ID",
                    "name": "OpenAI"
                }
            }
        },
        {
            "parameters": {
                "fromEmail": "bot@yourdomain.com",
                "toEmail": "team@yourdomain.com",
                "subject": "Meeting Summary",
                "text": "={{ $json.message.content }}"
            },
            "name": "Email Summary",
            "type": "n8n-nodes-base.emailSend",
            "typeVersion": 1,
            "position": [
                650,
                300
            ]
        }
    ],
    "connections": {
        "Webhook (Upload)": {
            "main": [
                [
                    {
                        "node": "AI Summarize",
                        "type": "main",
                        "index": 0
                    }
                ]
            ]
        },
        "AI Summarize": {
            "main": [
                [
                    {
                        "node": "Email Summary",
                        "type": "main",
                        "index": 0
                    }
                ]
            ]
        }
    }
}