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