Résumer automatiquement les enregistrements Zoom avec GPT-4 et envoyer vers Slack et par e-mail

Intermédiaire

Ceci est unAI Summarization, Multimodal AIworkflow d'automatisation du domainecontenant 6 nœuds.Utilise principalement des nœuds comme Code, Gmail, Slack, OpenAi, Webhook. Résumer automatiquement les enregistrements Zoom et les envoyer vers Slack et e-mail avec GPT-4

Prérequis
  • Compte Google et informations d'identification Gmail API
  • Token Bot Slack ou URL Webhook
  • Clé API OpenAI
  • Point de terminaison HTTP Webhook (généré automatiquement par n8n)
Aperçu du workflow
Visualisation des connexions entre les nœuds, avec support du zoom et du déplacement
Exporter le workflow
Copiez la configuration JSON suivante dans n8n pour importer et utiliser ce workflow
{
  "meta": {
    "instanceId": "2000c64071c20843606b95c63795bb0797c41036047055a6586498e855b96efc"
  },
  "nodes": [
    {
      "id": "ca5b18c5-d621-47ac-be74-fbaec366f1da",
      "name": "Enregistrement Zoom Webhook",
      "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": "Normalisation des données",
      "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": "Résumé par IA",
      "type": "n8n-nodes-base.openAi",
      "position": [
        1232,
        176
      ],
      "parameters": {
        "resource": "chat",
        "operation": "create",
        "requestOptions": {}
      },
      "typeVersion": 1
    },
    {
      "id": "bf9d2436-4ddc-4123-b66b-75d954c32d49",
      "name": "Publication vers 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": "Envoyer un e-mail",
      "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": "Instructions de configuration",
      "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
          }
        ]
      ]
    },
    "ca5b18c5-d621-47ac-be74-fbaec366f1da": {
      "main": [
        [
          {
            "node": "fc122ffd-0de5-4b06-bf20-188b724b7af9",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
Foire aux questions

Comment utiliser ce workflow ?

Copiez le code de configuration JSON ci-dessus, créez un nouveau workflow dans votre instance n8n et sélectionnez "Importer depuis le JSON", collez la configuration et modifiez les paramètres d'authentification selon vos besoins.

Dans quelles scénarios ce workflow est-il adapté ?

Intermédiaire - Résumé IA, IA Multimodale

Est-ce payant ?

Ce workflow est entièrement gratuit et peut être utilisé directement. Veuillez noter que les services tiers utilisés dans le workflow (comme l'API OpenAI) peuvent nécessiter un paiement de votre part.

Informations sur le workflow
Niveau de difficulté
Intermédiaire
Nombre de nœuds6
Catégorie2
Types de nœuds6
Description de la difficulté

Adapté aux utilisateurs expérimentés, avec des workflows de complexité moyenne contenant 6-15 nœuds

Auteur
David Olusola

David Olusola

@dae221

I 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

Liens externes
Voir sur n8n.io

Partager ce workflow

Catégories

Catégories: 34