Skip to main content

Extract meeting decisions and tasks with Outlook, GPT-4o, SharePoint, and To Do

Workflow preview

Workflow preview
100%
Extract meeting decisions and tasks with Outlook, GPT-4o, SharePoint, and To Do preview
Open on n8n.io

1. Workflow Overview

Quick overview This workflow polls Outlook for meeting summary emails, uses GPT 4o to extract strategic decisions and action items from the transcript, logs decisions to a SharePoint list, creates ...

Best for

  • Document Extraction automation workflows
  • AI Summarization automation workflows
  • advanced n8n builders looking for reusable templates

Tools used

n8n-nodes-base.microsoftoutlooktrigger, n8n-nodes-base.code, n8n-nodes-base.html, n8n-nodes-base.openai, n8n-nodes-base.microsoftsharepoint, n8n-nodes-base.microsofttodo, n8n-nodes-base.errortrigger, n8n-nodes-base.stickynote

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Mychel Garzon.

Original n8n.io source

1.1 Workflow description

Title
Extract meeting decisions and tasks with Outlook, GPT-4o, SharePoint, and To Do
Workflow name
Extract meeting decisions and tasks with Outlook, GPT-4o, SharePoint, and To Do

Quick overview

This workflow polls Outlook for meeting summary emails, uses GPT-4o to extract strategic decisions and action items from the transcript, logs decisions to a SharePoint list, creates Microsoft To Do tasks with normalized due dates, and sends failure alerts via Outlook email if any node errors occur.

How it works

  1. An Outlook trigger polls for new emails from a configured bot sender address every 15 minutes and passes matching messages downstream.
  2. A deduplication node checks each email's conversation ID against a rolling in-memory list and drops any threads already processed in a previous run. The list is capped at 100 entries and rotates automatically.
  3. The HTML body of each email is stripped of markup and converted to clean plain text before being passed to the AI node.
  4. GPT-4o analyzes the plain text transcript and returns a structured JSON object containing two arrays: Strategic_Decisions and Action_Items.
  5. A parse node strips any markdown fences from the AI output, splits the two arrays, and routes them to separate output branches — decisions to SharePoint, action items to the due date normalizer.
  6. Each strategic decision is logged as a new item in the configured SharePoint list for permanent team-level record keeping.
  7. Action item due dates are normalized from YYYY-MM-DD to the dateTimeTimeZone format Microsoft Graph requires, then each action item is created as a dated Microsoft To Do task with assignee and deadline included

Setup

  1. Replace [email protected] in the Outlook Trigger sender filter with the actual address your meeting bot uses to send transcript emails.
  2. Connect your Microsoft Outlook OAuth2 credential to both the Outlook Trigger node and the Send Error Email node. Replace [email protected] in the error node with your actual admin address.
  3. Connect your OpenAI credential to the Extract Insights via AI node. The prompt expects the AI to return a JSON object with Strategic_Decisions and Action_Items arrays — adjust the prompt if your meeting bot structures summaries differently.
  4. Connect your Microsoft SharePoint credential to the Log to SharePoint List node and configure the target site ID and list ID where decisions should be stored.
  5. Connect your Microsoft To Do credential to the Create To Do Tasks node and replace YOUR_TODO_LIST_ID with your actual task list ID. In the Parse & Route Arrays node settings, set the number of outputs to 2 so the split routing works correctly.

Requirements

  • Microsoft Outlook OAuth2 account with inbox access and a configured meeting bot sender address
  • OpenAI API key with access to GPT-4o
  • Microsoft SharePoint site with a list configured to receive decision records
  • Microsoft To Do account with a task list ready to receive action items

Customization

  • Change the polling interval in the Outlook Trigger node from 15 minutes to any frequency that matches your meeting cadence.
  • Adjust the DEADLINE_HOUR_UTC constant in the Normalize Due Date node to set task deadlines in your team's local timezone. Default is 14:00 UTC (17:00 EEST).
  • Modify the GPT-4o prompt in the Extract Insights via AI node to match the structure of your meeting bot's email format or extract additional fields beyond decisions and action items.
  • Add a Slack or Teams notification node after the SharePoint and To Do branches to alert the team when new decisions or tasks have been created.

Additional info

  • The Parse & Route Arrays node must have its output count set to 2 manually in the node settings tab on the canvas. This is not configurable from the parameters panel and is easy to miss during setup.
  • If the AI output cannot be parsed, the node defaults to empty arrays for both Strategic_Decisions and Action_Items so the workflow never crashes on a malformed response.
  • Due dates must be in YYYY-MM-DD format in the AI output. The Normalize Due Date node silently skips any value that does not match this pattern, leaving the task without a deadline rather than failing.

1.2 Logical Blocks

This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.

2. Block-by-Block Analysis

Block 1 - Outlook Trigger

Type / Role
n8n-nodes-base.microsoftOutlookTrigger - microsoftOutlookTrigger
Config choices
Version 1

Block 2 - Deduplicate Threads

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 3 - Strip HTML Bloat

Type / Role
n8n-nodes-base.html - html
Config choices
Version 1

Block 4 - Extract Insights via AI

Type / Role
n8n-nodes-base.openAi - openAi
Config choices
Version 1

Block 5 - Parse & Route Arrays

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 6 - Log to SharePoint List

Type / Role
n8n-nodes-base.microsoftSharePoint - microsoftSharePoint
Config choices
Version 1

Block 7 - Normalize Due Date

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 8 - Create To Do Tasks

Type / Role
n8n-nodes-base.microsoftToDo - microsoftToDo
Config choices
Version 1

Block 9 - Error Trigger

Type / Role
n8n-nodes-base.errorTrigger - errorTrigger
Config choices
Version 1

Block 10 - Sticky Note

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 11 - Sticky Note1

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 12 - Sticky Note2

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 13 - Sticky Note3

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 14 - Sticky Note5

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 15 - Sticky Note6

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 16 - Send Error Email

Type / Role
n8n-nodes-base.microsoftOutlook - microsoftOutlook
Config choices
Version 2

3. Summary Table

Workflow Extract meeting decisions and tasks with Outlook, GPT-4o, SharePoint, and To Do
Complexity advanced
Nodes 16
Categories Document Extraction, AI Summarization
Author Mychel Garzon
Published 21 May 2026

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/15896/15896.json as the source template for this automation.

  2. 2. Import the template into n8n

    Open n8n, import the downloaded JSON, and review each node before activating the workflow.

  3. 3. Configure credentials and variables

    Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.

  4. 4. Test with sample data

    Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.

  5. 5. Activate and monitor

    Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.

5. General Notes & Resources

Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.

Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.

Frequently asked questions

What does Extract meeting decisions and tasks with Outlook, GPT-4o, SharePoint, and To Do do?

Quick overview This workflow polls Outlook for meeting summary emails, uses GPT 4o to extract strategic decisions and action items from the transcript, logs decisions to a SharePoint list, creates ...

What do I need before importing this workflow?

Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.

Can I customize this workflow?

Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Document Extraction, AI Summarization use case.