Skip to main content

Documentation Index

Fetch the complete documentation index at: https://nango.dev/docs/llms.txt

Use this file to discover all available pages before exploring further.

πŸš€ Quickstart

Connect to Microsoft Teams with Nango and see data flow in 2 minutes.
1

Create the integration

In Nango (free signup), go to Integrations -> Configure New Integration -> Microsoft Teams.
2

Authorize Microsoft Teams

Go to Connections -> Add Test Connection -> Authorize, then log in to Microsoft Teams. Later, you’ll let your users do the same directly from your app.
3

Call the Microsoft Teams API

Let’s make your first request to the Microsoft Teams (Microsoft Graph) API (fetch a list of teams joined by the authenticated user). Replace the placeholders below with your secret key, integration ID, and connection ID:
curl "https://api.nango.dev/proxy/v1.0/me/joinedTeams" \
  -H "Authorization: Bearer <NANGO-SECRET-KEY>" \
  -H "Provider-Config-Key: <INTEGRATION-ID>" \
  -H "Connection-Id: <CONNECTION-ID>"
Or fetch credentials dynamically via the Node SDK or API.βœ… You’re connected! Check the Logs tab in Nango to inspect requests.
4

Implement Nango in your app

Follow our Auth implementation guide to integrate Nango in your app.To obtain your own production credentials, follow the setup guide linked below.

πŸ“š Microsoft Teams Integration Guides

Nango maintained guides for common use cases. Official docs: Microsoft Graph API docs

🧩 Pre-built syncs & actions for Microsoft Teams

Enable them in your dashboard. Extend and customize to fit your needs.

Channels

Function nameDescriptionTypeSource code
create-channel-messagePost a root message in a channelActionπŸ”— Github
create-channel-tabAdd a tab to a channel.ActionπŸ”— Github
create-channelCreate a channel in a team.ActionπŸ”— Github
delete-channelDelete a channel from a teamActionπŸ”— Github
get-channel-messageRetrieve a channel message by ID.ActionπŸ”— Github
get-channelRetrieve a channel by ID.ActionπŸ”— Github
list-channel-messagesList root messages in a channel.ActionπŸ”— Github
list-channel-repliesList replies under a channel message threadActionπŸ”— Github
list-channel-tabsList tabs configured on a channel.ActionπŸ”— Github
list-channelsList channels in a team.ActionπŸ”— Github
update-channelUpdate mutable channel properties.ActionπŸ”— Github

Chats

Function nameDescriptionTypeSource code
create-chat-messageSend a message in a chatActionπŸ”— Github
create-chatCreate a one-on-one or group chat.ActionπŸ”— Github
get-chat-messageRetrieve a chat message by ID.ActionπŸ”— Github
list-chat-membersList members in a chatActionπŸ”— Github
list-chat-messagesList messages in a chat.ActionπŸ”— Github
list-chatsList chats for a user.ActionπŸ”— Github

Messages

Function nameDescriptionTypeSource code
reply-to-channel-messageReply to a channel message thread.ActionπŸ”— Github

Teams

Function nameDescriptionTypeSource code
add-team-memberAdd a member to a teamActionπŸ”— Github
create-teamCreate a team from a template or existing group.ActionπŸ”— Github
get-teamRetrieve a team by ID.ActionπŸ”— Github
list-joined-teamsList teams the user has joinedActionπŸ”— Github
list-team-membersList members in a team.ActionπŸ”— Github
remove-team-memberRemove a member from a team.ActionπŸ”— Github

Others

Function nameDescriptionTypeSource code
get-chatRetrieve a chat by ID.ActionπŸ”— Github
channel-message-repliesSync replies for selected channel message threadsSyncπŸ”— Github
channel-messagesSync root channel messages for selected channelsSyncπŸ”— Github
chat-membersSync member rosters for chatsSyncπŸ”— Github
chat-messagesSync chat messages across user chats.SyncπŸ”— Github
chatsSync chats available to the user.SyncπŸ”— Github
joined-teamsSync the teams joined by a userSyncπŸ”— Github
org-unitsSync Microsoft 365 or Entra groups used as organizational unitsSyncπŸ”— Github
team-channelsSync channels for selected teams.SyncπŸ”— Github
team-membersSync team membership rostersSyncπŸ”— Github
usersSync directory users relevant to Microsoft Teams workspacesSyncπŸ”— Github