← Back
Extract key decisions from Zoom and send to CRM
n8n_2000_workflows / extract-key-decisions-zoom-crm.json
Complexity: mediumNodes: 5
ai:basecrmdatadecisionserrorextractextract-key-decisions-zoom-crm.jsonfetchfromhttprequestincomingkeymediumn8nn8n_2000_workflowsnodesopenaiapisendslacktotriggerwebhookzoom
Node Overview
- Incoming Trigger – n8n-nodes-base.webhook
- Fetch data from Zoom – n8n-nodes-base.httpRequest
- AI: Extract Key Decisions – n8n-nodes-base.openAIApi
- Send to CRM – n8n-nodes-base.httpRequest
- Send Error to Slack – n8n-nodes-base.slack
Workflow JSON
{ "name": "Extract key decisions from Zoom and send to CRM", "nodes": [ { "id": "trigger-zoom", "name": "Incoming Trigger", "type": "n8n-nodes-base.webhook", "typeVersion": 1, "position": [ -600, 5600 ], "parameters": { "httpMethod": "POST", "path": "extract-key-decisions-from-zoom-and-send-to-crm", "responseCode": 200, "responseMode": "onReceived" } }, { "id": "fetch-zoom", "name": "Fetch data from Zoom", "type": "n8n-nodes-base.httpRequest", "typeVersion": 1, "position": [ -300, 5600 ], "parameters": { "method": "GET", "url": "https://api.example.com/zoom", "responseFormat": "json" } }, { "id": "ai-extract-key-decisions", "name": "AI: Extract Key Decisions", "type": "n8n-nodes-base.openAIApi", "typeVersion": 1, "position": [ 0, 5600 ], "parameters": { "model": "gpt-4", "operation": "complete", "prompt": "Perform the following action on the incoming data: extract key decisions" } }, { "id": "send-crm", "name": "Send to CRM", "type": "n8n-nodes-base.httpRequest", "typeVersion": 1, "position": [ 300, 5600 ], "parameters": { "method": "POST", "url": "https://api.example.com/crm", "responseFormat": "json", "options": {} } }, { "id": "error-handler-600-5600", "name": "Send Error to Slack", "type": "n8n-nodes-base.slack", "typeVersion": 1, "position": [ 600, 5600 ], "parameters": { "resource": "message", "operation": "post", "channel": "#automation-alerts", "text": "={{ $json.get('error_message', 'An error occurred') }}" } } ], "connections": { "Incoming Trigger": { "main": [ [ { "node": "Fetch data from Zoom", "type": "main", "index": 0 } ] ] }, "Fetch data from Zoom": { "main": [ { "node": "AI: Extract Key Decisions", "type": "main", "index": 0 } ] }, "AI: Extract Key Decisions": { "main": [ [ { "node": "AI: Extract Key Decisions", "type": "main", "index": 0 } ] ] }, "Send to CRM": { "main": [ [ { "node": "Send Error to Slack", "type": "main", "index": 0 } ] ] } }, "settings": {}, "active": false }