Back to Integrations
integrationClickUp node
integrationMicrosoft Teams node

ClickUp and Microsoft Teams integration

Save yourself the work of writing custom integrations for ClickUp and Microsoft Teams and use n8n instead. Build adaptable and scalable Productivity, Communication, and HITL workflows that work with your technology stack. All within a building experience you will love.

How to connect ClickUp and Microsoft Teams

  • Step 1: Create a new workflow
  • Step 2: Add and configure nodes
  • Step 3: Connect
  • Step 4: Customize and extend your integration
  • Step 5: Test and activate your workflow

Step 1: Create a new workflow and add the first step

In n8n, click the "Add workflow" button in the Workflows tab to create a new workflow. Add the starting point – a trigger on when your workflow should run: an app event, a schedule, a webhook call, another workflow, an AI chat, or a manual trigger. Sometimes, the HTTP Request node might already serve as your starting point.

ClickUp and Microsoft Teams integration: Create a new workflow and add the first step

Step 2: Add and configure ClickUp and Microsoft Teams nodes

You can find ClickUp and Microsoft Teams in the nodes panel. Drag them onto your workflow canvas, selecting their actions. Click each node, choose a credential, and authenticate to grant n8n access. Configure ClickUp and Microsoft Teams nodes one by one: input data on the left, parameters in the middle, and output data on the right.

ClickUp and Microsoft Teams integration: Add and configure ClickUp and Microsoft Teams nodes

Step 3: Connect ClickUp and Microsoft Teams

A connection establishes a link between ClickUp and Microsoft Teams (or vice versa) to route data through the workflow. Data flows from the output of one node to the input of another. You can have single or multiple connections for each node.

ClickUp and Microsoft Teams integration: Connect ClickUp and Microsoft Teams

Step 4: Customize and extend your ClickUp and Microsoft Teams integration

Use n8n's core nodes such as If, Split Out, Merge, and others to transform and manipulate data. Write custom JavaScript or Python in the Code node and run it as a step in your workflow. Connect ClickUp and Microsoft Teams with any of n8n’s 1000+ integrations, and incorporate advanced AI logic into your workflows.

ClickUp and Microsoft Teams integration: Customize and extend your ClickUp and Microsoft Teams integration

Step 5: Test and activate your ClickUp and Microsoft Teams workflow

Save and run the workflow to see if everything works as expected. Based on your configuration, data should flow from ClickUp to Microsoft Teams or vice versa. Easily debug your workflow: you can check past executions to isolate and fix the mistake. Once you've tested everything, make sure to save your workflow and activate it.

ClickUp and Microsoft Teams integration: Test and activate your ClickUp and Microsoft Teams workflow

Distribute summarized meeting notes with Microsoft Teams and ClickUp

This workflow processes raw meeting recordings or handwritten notes, automatically transcribes and summarizes them, and then distributes the concise summary to all meeting participants via Microsoft Teams while also creating an action-item task in ClickUp. The goal is to save time, keep everyone aligned, and ensure follow-up tasks are tracked in your project management workspace.

Pre-conditions/Requirements

Prerequisites
n8n instance (self-hosted or n8n.cloud)
ScrapeGraphAI community node installed
Microsoft Teams tenant with permissions to create Incoming Webhooks or use Bot Framework
ClickUp workspace and a target List to hold meeting action items
Optional: OpenAI or any LLM API account for high-quality summarization

Required Credentials
Microsoft Teams Webhook URL** – to post summary messages
ClickUp Personal Access Token** – to create tasks
OpenAI API Key** (optional but recommended) – for AI-powered summarization
ScrapeGraphAI API Key** – placeholder key to satisfy the template requirement

Specific Setup Requirements

Item Description Example
Teams Channel Webhook Create an Incoming Webhook in the desired Teams channel and copy the URL https://outlook.office.com/webhook/...
ClickUp List ID The numeric ID of the list where tasks will be created 90123456
Summarization Model The LLM model or API you prefer to use gpt-3.5-turbo

How it works

This workflow transcribes or parses meeting content, leverages an LLM to generate a concise summary and action items, then distributes the results to participants in Microsoft Teams and creates a follow-up task in ClickUp. Everything runs in a single automated flow triggered manually or on a schedule.

Key Steps:
Manual Trigger**: Start the workflow after a meeting ends.
Sticky Note**: Provides on-canvas documentation for quick reference.
Set Node – Upload Metadata**: Define meeting title, date, and participants.
HTTP Request – Transcription**: Send audio/video file to a transcription service (e.g., Azure Speech-to-Text).
Wait**: Pause until the transcription is complete.
Code – Summarize**: Use OpenAI to summarize the transcript and extract action items.
IF Node – Validate Output**: Ensure the summary exists; handle errors otherwise.
Merge**: Combine summary with participant list.
Microsoft Teams Node**: Send the summary to each participant or channel via webhook.
ClickUp Node**: Create a task containing the summary and action items.

Set up steps

Setup Time: 10-15 minutes

Create Teams Webhook:
In Microsoft Teams, navigate to the target channel → Manage channel → Connectors → Incoming Webhook → give it a name (e.g., “MeetingBot”) and copy the generated URL.

Generate ClickUp Personal Access Token:
ClickUp → Settings → Apps → Generate Token → copy and store it securely.

Get ClickUp List ID:
Open the list in ClickUp and copy the numeric ID from the URL bar.

Optional – Obtain OpenAI API Key:
Sign in to OpenAI → API Keys → Create new secret key.

Add Credentials in n8n:
In n8n, go to Credentials → New → add Microsoft Teams, ClickUp, and OpenAI (Generic HTTP).

Import Workflow:
Paste the JSON workflow into n8n or use “Templates → Import”.

Configure Nodes:
In the Set Node: update meeting_title, date, and participants array.
In HTTP Request: set the transcription service endpoint and authentication.
In Code – Summarize: paste your OpenAI key or select credential.
In Microsoft Teams Node: select the Teams credential and webhook URL.
In ClickUp Node: select ClickUp credential and enter the List ID.

Test:
Click “Execute Workflow” on the Manual Trigger node. Verify that a message appears in Teams and a task is created in ClickUp.

Node Descriptions

Core Workflow Nodes:
Manual Trigger** – Initiates the workflow manually or on a schedule.
Sticky Note** – Documentation block outlining purpose and credential usage.
Set** – Stores meeting metadata and participants list.
HTTP Request** – Sends meeting recording to a transcription service and fetches results.
Wait** – Holds the workflow until transcription is ready.
Code** – Summarizes transcript and extracts action items via OpenAI.
IF** – Validates summarization success; branches on failure.
Merge** – Combines summary text with participant emails/usernames.
Microsoft Teams** – Posts summary to Teams channel or direct messages.
ClickUp** – Creates a task containing summary and action items.

Data Flow:
Manual Trigger → Set → HTTP Request → Wait → Code → IF → Merge → Microsoft Teams
Merge → ClickUp

Customization Examples

Change summarization prompt
// Inside the Code node
const prompt = You are an expert meeting assistant. Summarize the following transcript in under 150 words. List action items in bullet points with owners. Transcript: ${items[0].json.transcript};

Send summary as a PDF attachment
// Add Convert & Save node before Teams
// Convert markdown summary to PDF and attach in Teams node

Data Output Format

The workflow outputs structured JSON data:

{
"meeting_title": "Q3 Strategy Sync",
"date": "2024-05-10",
"participants": ["[email protected]", "[email protected]"],
"summary": "We reviewed Q3 OKRs, decided to ...",
"action_items": [
{ "owner": "John", "task": "Prepare budget draft", "due": "2024-05-20" },
{ "owner": "Jane", "task": "Compile market research", "due": "2024-05-25" }
],
"clickup_task_id": "abcd1234",
"teams_message_id": "msg7890"
}

Troubleshooting

Common Issues
Teams message not sent – Verify the Incoming Webhook URL and that the Teams node uses the correct credential.
ClickUp task missing – Ensure the List ID is correct and the ClickUp token has tasks:write scope.
Empty summary – Check that the transcription text is populated and the OpenAI prompt is valid.

Performance Tips
Compress large audio/video files before sending to the transcription service.
Use batching in the Teams node if participant list is >20 to avoid rate limits.

Pro Tips:
Schedule the workflow to auto-run 5 minutes after recurring meeting end-times.
Customize the ClickUp task description template to include embedded links.
Add a “Send Email” node for participants not on Teams.

Nodes used in this workflow

Popular ClickUp and Microsoft Teams workflows

Distribute summarized meeting notes with Microsoft Teams and ClickUp

This workflow processes raw meeting recordings or handwritten notes, automatically transcribes and summarizes them, and then distributes the concise summary to all meeting participants via Microsoft Teams while also creating an action-item task in ClickUp. The goal is to save time, keep everyone aligned, and ensure follow-up tasks are tracked in your project management workspace. Pre-conditions/Requirements Prerequisites n8n instance (self-hosted or n8n.cloud) ScrapeGraphAI community node installed Microsoft Teams tenant with permissions to create Incoming Webhooks or use Bot Framework ClickUp workspace and a target List to hold meeting action items Optional: OpenAI or any LLM API account for high-quality summarization Required Credentials Microsoft Teams Webhook URL** – to post summary messages ClickUp Personal Access Token** – to create tasks OpenAI API Key** (optional but recommended) – for AI-powered summarization ScrapeGraphAI API Key** – placeholder key to satisfy the template requirement Specific Setup Requirements | Item | Description | Example | |------|-------------|---------| | Teams Channel Webhook | Create an Incoming Webhook in the desired Teams channel and copy the URL | https://outlook.office.com/webhook/... | | ClickUp List ID | The numeric ID of the list where tasks will be created | 90123456 | | Summarization Model | The LLM model or API you prefer to use | gpt-3.5-turbo | How it works This workflow transcribes or parses meeting content, leverages an LLM to generate a concise summary and action items, then distributes the results to participants in Microsoft Teams and creates a follow-up task in ClickUp. Everything runs in a single automated flow triggered manually or on a schedule. Key Steps: Manual Trigger**: Start the workflow after a meeting ends. Sticky Note**: Provides on-canvas documentation for quick reference. Set Node – Upload Metadata**: Define meeting title, date, and participants. HTTP Request – Transcription**: Send audio/video file to a transcription service (e.g., Azure Speech-to-Text). Wait**: Pause until the transcription is complete. Code – Summarize**: Use OpenAI to summarize the transcript and extract action items. IF Node – Validate Output**: Ensure the summary exists; handle errors otherwise. Merge**: Combine summary with participant list. Microsoft Teams Node**: Send the summary to each participant or channel via webhook. ClickUp Node**: Create a task containing the summary and action items. Set up steps Setup Time: 10-15 minutes Create Teams Webhook: In Microsoft Teams, navigate to the target channel → Manage channel → Connectors → Incoming Webhook → give it a name (e.g., “MeetingBot”) and copy the generated URL. Generate ClickUp Personal Access Token: ClickUp → Settings → Apps → Generate Token → copy and store it securely. Get ClickUp List ID: Open the list in ClickUp and copy the numeric ID from the URL bar. Optional – Obtain OpenAI API Key: Sign in to OpenAI → API Keys → Create new secret key. Add Credentials in n8n: In n8n, go to Credentials → New → add Microsoft Teams, ClickUp, and OpenAI (Generic HTTP). Import Workflow: Paste the JSON workflow into n8n or use “Templates → Import”. Configure Nodes: In the Set Node: update meeting_title, date, and participants array. In HTTP Request: set the transcription service endpoint and authentication. In Code – Summarize: paste your OpenAI key or select credential. In Microsoft Teams Node: select the Teams credential and webhook URL. In ClickUp Node: select ClickUp credential and enter the List ID. Test: Click “Execute Workflow” on the Manual Trigger node. Verify that a message appears in Teams and a task is created in ClickUp. Node Descriptions Core Workflow Nodes: Manual Trigger** – Initiates the workflow manually or on a schedule. Sticky Note** – Documentation block outlining purpose and credential usage. Set** – Stores meeting metadata and participants list. HTTP Request** – Sends meeting recording to a transcription service and fetches results. Wait** – Holds the workflow until transcription is ready. Code** – Summarizes transcript and extracts action items via OpenAI. IF** – Validates summarization success; branches on failure. Merge** – Combines summary text with participant emails/usernames. Microsoft Teams** – Posts summary to Teams channel or direct messages. ClickUp** – Creates a task containing summary and action items. Data Flow: Manual Trigger → Set → HTTP Request → Wait → Code → IF → Merge → Microsoft Teams Merge → ClickUp Customization Examples Change summarization prompt // Inside the Code node const prompt = ` You are an expert meeting assistant. Summarize the following transcript in under 150 words. List action items in bullet points with owners. Transcript: ${items[0].json.transcript} `; Send summary as a PDF attachment // Add Convert & Save node before Teams // Convert markdown summary to PDF and attach in Teams node Data Output Format The workflow outputs structured JSON data: { "meeting_title": "Q3 Strategy Sync", "date": "2024-05-10", "participants": ["[email protected]", "[email protected]"], "summary": "We reviewed Q3 OKRs, decided to ...", "action_items": [ { "owner": "John", "task": "Prepare budget draft", "due": "2024-05-20" }, { "owner": "Jane", "task": "Compile market research", "due": "2024-05-25" } ], "clickup_task_id": "abcd1234", "teams_message_id": "msg7890" } Troubleshooting Common Issues Teams message not sent – Verify the Incoming Webhook URL and that the Teams node uses the correct credential. ClickUp task missing – Ensure the List ID is correct and the ClickUp token has tasks:write scope. Empty summary – Check that the transcription text is populated and the OpenAI prompt is valid. Performance Tips Compress large audio/video files before sending to the transcription service. Use batching in the Teams node if participant list is >20 to avoid rate limits. Pro Tips: Schedule the workflow to auto-run 5 minutes after recurring meeting end-times. Customize the ClickUp task description template to include embedded links. Add a “Send Email” node for participants not on Teams.

Build your own ClickUp and Microsoft Teams integration

Create custom ClickUp and Microsoft Teams workflows by choosing triggers and actions. Nodes come with global operations and settings, as well as app-specific parameters that can be configured. You can also use the HTTP Request node to query data from any app or service with a REST API.

ClickUp supported actions

Create
Create a checklist
Delete
Delete a checklist
Update
Update a checklist
Create
Create a checklist item
Delete
Delete a checklist item
Update
Update a checklist item
Create
Create a comment
Delete
Delete a comment
Get Many
Get many comments
Update
Update a comment
Create
Create a folder
Delete
Delete a folder
Get
Get a folder
Get Many
Get many folders
Update
Update a folder
Create
Create a goal
Delete
Delete a goal
Get
Get a goal
Get Many
Get many goals
Update
Update a goal
Create
Create a key result
Delete
Delete a key result
Update
Update a key result
Create
Create a list
Custom Fields
Retrieve list's custom fields
Delete
Delete a list
Get
Get a list
Get Many
Get many lists
Member
Get list members
Update
Update a list
Create
Create a space tag
Delete
Delete a space tag
Get Many
Get many space tags
Update
Update a space tag
Create
Create a task
Delete
Delete a task
Get
Get a task
Get Many
Get many tasks
Member
Get task members
Set Custom Field
Set a custom field
Update
Update a task
Create
Create a task dependency
Delete
Delete a task dependency
Add
Add a task to a list
Remove
Remove a task from a list
Add
Add a tag to a task
Remove
Remove a tag from a task
Create
Create a time entry
Delete
Delete a time entry
Get
Get a time entry
Get Many
Get many time entries
Start
Start a time entry
Stop
Stop the current running timer
Update
Update a time Entry
Add
Add tag to time entry
Get Many
Get many time entry tags
Remove
Remove tag from time entry

Microsoft Teams supported actions

Create
Create a channel
Delete
Delete a channel
Get
Get a channel
Get Many
Get many channels
Update
Update a channel
Create
Create a message in a channel
Get Many
Get many messages from a channel
Create
Create a message in a chat
Get
Get a message from a chat
Get Many
Get many messages from a chat
Send and Wait for Response
Send a message and wait for response
Create
Create a task
Delete
Delete a task
Get
Get a task
Get Many
Get many tasks
Update
Update a task

FAQs

  • Can ClickUp connect with Microsoft Teams?

  • Can I use ClickUp’s API with n8n?

  • Can I use Microsoft Teams’s API with n8n?

  • Is n8n secure for integrating ClickUp and Microsoft Teams?

  • How to get started with ClickUp and Microsoft Teams integration in n8n.io?

Need help setting up your ClickUp and Microsoft Teams integration?

Discover our latest community's recommendations and join the discussions about ClickUp and Microsoft Teams integration.
Nikolay Titov
Mikey Ross

Looking to integrate ClickUp and Microsoft Teams in your company?

Over 3000 companies switch to n8n every single week

Why use n8n to integrate ClickUp with Microsoft Teams

Build complex workflows, really fast

Build complex workflows, really fast

Handle branching, merging and iteration easily.
Pause your workflow to wait for external events.

Code when you need it, UI when you don't

Simple debugging

Your data is displayed alongside your settings, making edge cases easy to track down.

Use templates to get started fast

Use 1000+ workflow templates available from our core team and our community.

Reuse your work

Copy and paste, easily import and export workflows.

Implement complex processes faster with n8n

red iconyellow iconred iconyellow icon