sharePointSiteId + Graph permissions (see Sending files in group chats). Polls are sent via Adaptive Cards. Message actions expose explicit upload-file for file-first sends.
Bundled plugin
Microsoft Teams ships as a bundled plugin in current OpenClaw releases; no separate install is required in the normal packaged build. On an older build or a custom install that excludes bundled Teams, install the npm package directly:Quick setup
@microsoft/teams.cli handles bot registration, manifest creation, and credential generation in one command.
1. Install and log in
The Teams CLI is currently in preview. Commands and flags may change between releases.
--allow-anonymous is required because Teams cannot authenticate with devtunnels. Each incoming bot request is still validated by the Teams SDK.ngrok http 3978 or tailscale funnel 3978 (URLs may change each session).
3. Create the app
CLIENT_ID, CLIENT_SECRET, TENANT_ID, and a Teams App ID; it also offers to install the app in Teams directly.
4. Configure OpenClaw using the credentials from the output:
MSTEAMS_APP_ID, MSTEAMS_APP_PASSWORD, MSTEAMS_TENANT_ID.
5. Install the app in Teams
teams app create prompts you to install the app; select “Install in Teams”. To get the install link later:
Group chats are blocked by default (
channels.msteams.groupPolicy: "allowlist"). To allow group replies, set channels.msteams.groupAllowFrom, or use groupPolicy: "open" to allow any member (mention-gated).Goals
- Talk to OpenClaw via Teams DMs, group chats, or channels.
- Keep routing deterministic: replies always go back to the channel they arrived on.
- Default to safe channel behavior (mentions required unless configured otherwise).
Config writes
By default, Microsoft Teams can write config updates triggered by/config set|unset (requires commands.config: true).
Disable with:
Access control (DMs + groups)
DM access- Default:
channels.msteams.dmPolicy = "pairing". Unknown senders are ignored until approved. channels.msteams.allowFromshould use stable AAD object IDs or static sender access groups such asaccessGroup:core-team.- Do not rely on UPN/display-name matching for allowlists; they can change. OpenClaw disables direct name matching by default; opt in with
channels.msteams.dangerouslyAllowNameMatching: true. - The wizard can resolve names to IDs via Microsoft Graph when credentials allow.
- Default:
channels.msteams.groupPolicy = "allowlist"(blocked unless you addgroupAllowFrom).channels.defaults.groupPolicycan override the shared default whenchannels.msteams.groupPolicyis unset. channels.msteams.groupAllowFromcontrols which senders or static sender access groups can trigger in group chats/channels (falls back tochannels.msteams.allowFrom).- Set
groupPolicy: "open"to allow any member (still mention-gated by default). - To block all channels, set
channels.msteams.groupPolicy: "disabled".
- Scope group/channel replies by listing teams and channels under
channels.msteams.teams. - Use stable Teams conversation IDs from Teams links as keys, not mutable display names (see Team and Channel IDs).
- When
groupPolicy="allowlist"and a teams allowlist is present, only listed teams/channels are accepted (mention-gated). - The configure wizard accepts
Team/Channelentries and stores them for you. - On startup, OpenClaw resolves team/channel and user allowlist names to IDs (when Graph permissions allow) and logs the mapping. Unresolved names are kept as typed but ignored for routing unless
channels.msteams.dangerouslyAllowNameMatching: trueis set.
Federated authentication (certificate plus managed identity)
For production, OpenClaw supports federated authentication as an alternative to client secrets, viachannels.msteams.authType: "federated". Two methods:
Option A: Certificate-based authentication
Use a PEM certificate registered with your Entra ID app registration. Setup:- Generate or obtain a certificate (PEM format with private key).
- Entra ID → App Registration → Certificates & secrets → Certificates → upload the public certificate.
MSTEAMS_AUTH_TYPE=federatedMSTEAMS_CERTIFICATE_PATH=/path/to/cert.pem
Option B: Azure Managed Identity
Use Azure Managed Identity for passwordless authentication on Azure infrastructure (AKS, App Service, Azure VMs). How it works:- The bot pod/VM has a managed identity (system- or user-assigned).
- A federated identity credential links the managed identity to the Entra ID app registration.
- At runtime, OpenClaw uses
@azure/identityto acquire tokens from the Azure IMDS endpoint. - The token is passed to the Teams SDK for bot authentication.
- Azure infrastructure with managed identity enabled (AKS workload identity, App Service, VM).
- Federated identity credential created on the Entra ID app registration.
- Network access to IMDS (
169.254.169.254:80) from the pod/VM.
managedIdentityClientId: "<MI_CLIENT_ID>" to the block above.
Env vars:
MSTEAMS_AUTH_TYPE=federatedMSTEAMS_USE_MANAGED_IDENTITY=trueMSTEAMS_MANAGED_IDENTITY_CLIENT_ID=<client-id>(user-assigned only)
AKS Workload Identity setup
For AKS deployments using workload identity:- Enable workload identity on your AKS cluster.
-
Create a federated identity credential on the Entra ID app registration:
-
Annotate the Kubernetes service account with the app client ID:
-
Label the pod for workload identity injection:
-
Allow network access to IMDS (
169.254.169.254): if using NetworkPolicy, add an egress rule for169.254.169.254/32on port 80.
Auth type comparison
certificateThumbprint can be set alongside certificatePath but is not read by the auth path today; it is accepted for forward compatibility only.
Default: when authType is unset, OpenClaw uses client-secret authentication (appPassword). Existing configs keep working unchanged.
Local development (tunneling)
Teams cannot reachlocalhost. Use a persistent dev tunnel so the URL stays stable across sessions:
ngrok http 3978 or tailscale funnel 3978 (URLs may change each session).
If the tunnel URL changes, update the endpoint:
Testing the bot
Run diagnostics:- Install the Teams app (install link from
teams app get <id> --install-link). - Find the bot in Teams and send a DM.
- Check gateway logs for incoming activity.
Environment variables
These auth-related config keys can be set via environment variables instead ofopenclaw.json (other config keys, such as groupPolicy or historyLimit, are config-only):
Member info action
OpenClaw exposes a Graph-backedmember-info action for Microsoft Teams so agents and automations can resolve verified roster details for a configured conversation.
Requirements:
ChannelSettings.Read.GroupandTeamMember.Read.GroupRSC permissions (already in the recommended manifest).
channels.msteams.actions.memberInfo toggle.
Standard-channel lookups return the matching team-roster identity, display name, email, and roles.
In the current DM or group chat, the action can return the trusted sender’s stable user ID.
Private/shared-channel and non-current chat member lookups require additional roster permissions
and are rejected by the default permission baseline.
History context
channels.msteams.historyLimitcontrols how many recent channel/group messages are wrapped into the prompt. Falls back tomessages.groupChat.historyLimit, then defaults to 50. Set0to disable.- Fetched thread history is filtered by sender allowlists (
allowFrom/groupAllowFrom), so thread context seeding only includes messages from allowed senders. - Quoted attachment context (parsed from the Skype Reply-schema HTML in a reply’s own attachments) is passed through unfiltered; only thread-history seeding applies the sender-allowlist filter today.
- DM history can be limited with
channels.msteams.dmHistoryLimit(user turns). Per-user overrides:channels.msteams.dms["<user_id>"].historyLimit.
Current Teams RSC permissions (manifest)
These are the existing resourceSpecific permissions in our Teams app manifest. They only apply inside the team/chat where the app is installed. For channels (team scope):ChannelMessage.Read.Group(Application) - receive all channel messages without @mentionChannelMessage.Send.Group(Application)Member.Read.Group(Application)Owner.Read.Group(Application)ChannelSettings.Read.Group(Application)TeamMember.Read.Group(Application)TeamSettings.Read.Group(Application)
ChatMessage.Read.Chat(Application) - receive all group chat messages without @mention
Example Teams manifest (redacted)
Minimal, valid example with the required fields. Replace IDs and URLs.Manifest caveats (must-have fields)
bots[].botIdmust match the Azure Bot App ID.webApplicationInfo.idmust match the Azure Bot App ID.bots[].scopesmust include the surfaces you plan to use (personal,team,groupChat).bots[].supportsFiles: trueis required for file handling in personal scope.authorization.permissions.resourceSpecificmust include channel read/send for channel traffic.
Updating an existing app
Capabilities: RSC only vs Graph
With Teams RSC only (app installed, no Graph API permissions)
Works:- Read channel message text content.
- Send channel message text content.
- Receive personal (DM) file attachments.
- Channel/group image or file contents (payload only includes an HTML stub).
- Downloading attachments stored in SharePoint/OneDrive.
- Reading message history beyond the live webhook event.
With Teams RSC + Microsoft Graph Application permissions
Adds:- Downloading hosted content (images pasted into messages).
- Downloading file attachments stored in SharePoint/OneDrive.
- Reading channel/chat message history via Graph.
RSC vs Graph API
Bottom line: RSC is for real-time listening; Graph API is for historical access. To catch up on missed messages while offline, you need Graph API with
ChannelMessage.Read.All (requires admin consent).
Graph-enabled media + history
Enable only the Microsoft Graph application permissions needed for the Teams scopes and data you use:- Entra ID (Azure AD) App Registration → add Graph Application permissions:
ChannelMessage.Read.Allfor channel attachments and channel history.Chat.Read.Allfor group-chat attachments and group-chat history.Files.Read.Allwhen attachment bytes must be downloaded from SharePoint/OneDrive storage; history-only setups do not need it.
- Grant admin consent for the tenant.
- Bump the Teams app manifest version, re-upload, and reinstall the app in Teams.
- Fully quit and relaunch Teams to clear cached app metadata.
Channel/group file recovery (graphMediaFallback)
Teams can remove file markers from the HTML activity sent to a bot. In that case, the Bot Framework activity is indistinguishable from an ordinary HTML message; the complete attachment reference exists only on the Graph copy of the message.
Enable the fallback after granting the permissions above:
false so existing installations do not gain extra Graph traffic or permission errors automatically.
User mentions: @mentions work out of the box for users already in the conversation. To dynamically search and mention users not in the current conversation, add User.Read.All (Application) permission and grant admin consent.
Known limitations
Webhook timeouts
Teams delivers messages via HTTP webhook. OpenClaw applies fixed HTTP server timeouts to that webhook listener: 30s inactivity, 30s total request, 15s to receive headers. Optional inbound media and context enrichment has a shared 10-second budget, but the Teams SDK still waits for the agent turn before returning the webhook response. If the full turn exceeds Teams’ retry window, you may see:- Teams retrying the message (causing duplicates).
- Dropped replies.
Teams cloud and service URL support
This SDK-backed Teams path is live-validated for Microsoft Teams public cloud. Inbound replies use the incoming Teams SDK turn context. Out-of-context proactive operations - sends, edits, deletes, cards, polls, file-consent messages, and queued long-running replies - use the stored conversation referenceserviceUrl. Public cloud defaults to the Teams SDK public cloud environment and allows stored references on the public Teams Connector host: https://smba.trafficmanager.net/.
Public cloud is the default. You do not need to set channels.msteams.cloud or channels.msteams.serviceUrl for normal public-cloud bots.
For non-public Teams clouds, set cloud and the matching proactive boundary when Microsoft publishes one:
channels.msteams.cloudselects the Teams SDK cloud preset for authentication, JWT validation, token services, and Graph scope.channels.msteams.serviceUrlselects the Bot Connector endpoint boundary used to validate stored conversation references before proactive sends, edits, deletes, cards, polls, file-consent messages, and queued long-running replies. It is required for USGov and DoD SDK clouds. For China/21Vianet, OpenClaw uses the SDKChinapreset and accepts stored/configured service URLs only on Azure China Bot Framework channel hosts.
serviceUrl when available; otherwise use Microsoft’s table below.
Example for GCC, where Microsoft documents a separate proactive service URL but the Teams SDK exposes no separate GCC cloud preset:
channels.msteams.serviceUrl is restricted to supported Microsoft Teams Bot Connector hosts. When a service URL is configured, OpenClaw checks that the stored conversation serviceUrl uses the same host before proactive sends, edits, deletes, cards, polls, or queued long-running replies run. With the default public-cloud config, OpenClaw fails closed if a stored conversation points outside the public Teams Connector host. Receive a fresh message from the conversation after changing cloud/service URL settings so the stored conversation reference is current.
China/21Vianet has no separate global proactive smba URL in Microsoft’s Teams proactive endpoint table. Configure cloud: "China" so the Teams SDK uses Azure China auth, token, and JWT endpoints. Proactive sends then require a stored conversation reference from an incoming China Teams activity, or an explicitly configured service URL, on the Azure China Bot Framework channel boundary (*.botframework.azure.cn). Graph-backed Teams helpers are disabled for cloud: "China" until OpenClaw routes Graph requests through the Azure China Graph endpoint.
Formatting
Teams markdown is more limited than Slack or Discord:- Basic formatting works: bold, italic,
code, links. - Complex markdown (tables, nested lists) may not render correctly.
- Adaptive Cards are supported for polls and semantic presentation sends (see below).
Configuration
Key settings (see /gateway/configuration for shared channel patterns):channels.msteams.enabled: enable/disable the channel.channels.msteams.appId,channels.msteams.appPassword,channels.msteams.tenantId: bot credentials.channels.msteams.cloud: Teams SDK cloud environment (Public,USGov,USGovDoD, orChina; defaultPublic). Set withserviceUrlfor USGov/DoD SDK clouds; China uses the SDK preset and stored Azure China Bot Framework conversation references, with Graph-backed helpers disabled until Azure China Graph routing ships.channels.msteams.serviceUrl: Bot Connector service URL boundary for SDK proactive operations. Public cloud uses the SDK default; set for GCC (https://smba.infra.gcc.teams.microsoft.com/teams), GCC High, or DoD. China accepts Azure China Bot Framework channel hosts when the stored conversation reference comes from Teams operated by 21Vianet.channels.msteams.webhook.port(default3978).channels.msteams.webhook.path(default/api/messages).channels.msteams.dmPolicy:pairing | allowlist | open | disabled(defaultpairing).channels.msteams.allowFrom: DM allowlist (AAD object IDs recommended). The wizard resolves names to IDs during setup when Graph access is available.channels.msteams.dangerouslyAllowNameMatching: break-glass toggle to re-enable mutable UPN/display-name matching and direct team/channel name routing.channels.msteams.textChunkLimit: outbound text chunk size in characters (default4000, and hard-capped at4000regardless of a higher configured value).channels.msteams.streaming.chunkMode:length(default) ornewlineto split on blank lines (paragraph boundaries) before length chunking.channels.msteams.mediaAllowHosts: allowlist for inbound attachment hosts (defaults to Microsoft/Teams domains: Graph, SharePoint/OneDrive, Teams CDN, Bot Framework, Azure Media Services).channels.msteams.mediaAuthAllowHosts: allowlist for attaching Authorization headers on media retries (defaults to Graph + Bot Framework hosts).channels.msteams.graphMediaFallback: opt into Graph message lookups when channel/group HTML omits file markers (defaultfalse; see Channel/group file recovery).channels.msteams.mediaMaxMb: per-channel media size limit override in MB. Falls back toagents.defaults.mediaMaxMbwhen unset.channels.msteams.requireMention: require @mention in channels/groups (defaulttrue).channels.msteams.replyStyle:thread | top-level(see Reply style).channels.msteams.teams.<teamId>.replyStyle: per-team override.channels.msteams.teams.<teamId>.requireMention: per-team override.channels.msteams.teams.<teamId>.tools: default per-team tool policy overrides (allow/deny/alsoAllow) used when a channel override is missing.channels.msteams.teams.<teamId>.toolsBySender: default per-team per-sender tool policy overrides ("*"wildcard supported).channels.msteams.teams.<teamId>.channels.<conversationId>.replyStyle: per-channel override.channels.msteams.teams.<teamId>.channels.<conversationId>.requireMention: per-channel override.channels.msteams.teams.<teamId>.channels.<conversationId>.tools: per-channel tool policy overrides (allow/deny/alsoAllow).channels.msteams.teams.<teamId>.channels.<conversationId>.toolsBySender: per-channel per-sender tool policy overrides ("*"wildcard supported).toolsBySenderkeys should use explicit prefixes:channel:,id:,e164:,username:,name:(legacy unprefixed keys still map toid:only).channels.msteams.authType: authentication type -"secret"(default) or"federated".channels.msteams.certificatePath: path to PEM certificate file (federated + certificate auth).channels.msteams.certificateThumbprint: certificate thumbprint; accepted, not required for auth.channels.msteams.useManagedIdentity: enable managed identity auth (federated mode).channels.msteams.managedIdentityClientId: client ID for user-assigned managed identity.channels.msteams.sharePointSiteId: SharePoint site ID for file uploads in group chats/channels (see Sending files in group chats).channels.msteams.welcomeCard,channels.msteams.groupWelcomeCard,channels.msteams.promptStarters: welcome Adaptive Card shown on first DM/group contact, and its suggested prompt buttons.channels.msteams.responsePrefix: text prefixed to outbound replies.channels.msteams.feedbackEnabled(defaulttrue),channels.msteams.feedbackReflection(defaulttrue),channels.msteams.feedbackReflectionCooldownMs: thumbs-up/down feedback on replies and the negative-feedback reflection follow-up.channels.msteams.sso,channels.msteams.delegatedAuth: Bot Framework OAuth connection and delegated Graph scopes for SSO-backed flows;sso.enabled: truerequiressso.connectionName.
Routing and sessions
- Session keys follow the standard agent format (see /concepts/session):
- Direct messages share the main session (
agent:<agentId>:<mainKey>). - Channel/group messages use conversation id:
agent:<agentId>:msteams:channel:<conversationId>agent:<agentId>:msteams:group:<conversationId>
- Direct messages share the main session (
Reply style: threads vs posts
Teams has two channel UI styles over the same underlying data model:
The problem: the Teams API does not expose which UI style a channel uses. If you use the wrong
replyStyle:
threadin a Threads-style channel → replies appear nested awkwardly.top-levelin a Posts-style channel → replies appear as separate top-level posts instead of in-thread.
replyStyle per-channel based on how the channel is set up:
Resolution precedence
When the bot sends a reply into a channel,replyStyle is resolved from the most specific override down to the default. The first non-undefined value wins:
- Per-channel -
channels.msteams.teams.<teamId>.channels.<conversationId>.replyStyle - Per-team -
channels.msteams.teams.<teamId>.replyStyle - Global -
channels.msteams.replyStyle - Implicit default - derived from
requireMention:requireMention: true→threadrequireMention: false→top-level
requireMention: false globally without an explicit replyStyle, mentions in Posts-style channels surface as top-level posts even when the inbound was a thread reply. Pin replyStyle: "thread" at the global, team, or channel level to avoid surprises.
For proactive sends into a stored channel conversation (queued tool-call replies, long-running agents), the same team/channel resolution applies; group chats and personal (DM) conversations always resolve to top-level for proactive sends regardless of replyStyle.
Thread context preservation
WhenreplyStyle: "thread" is in effect and the bot was @mentioned from inside a channel thread, OpenClaw re-attaches the original thread root to the outbound conversation reference (19:...@thread.tacv2;messageid=<root>) so the reply lands inside the same thread. This holds for both live (in-turn) sends and proactive sends made after the Bot Framework turn context has expired (e.g., long-running agents, queued tool-call replies via mcp__openclaw__message).
The thread root is taken from the stored threadId on the conversation reference. Older stored references that predate threadId fall back to activityId (whatever inbound activity last seeded the conversation), so existing deployments keep working without a re-seed.
When replyStyle: "top-level" is in effect, channel-thread inbounds are intentionally answered as new top-level posts; no thread suffix is attached. This is correct for Threads-style channels; top-level posts where you expected threaded replies means replyStyle is set incorrectly for that channel.
Attachments and images
Current limitations:- DMs: images and file attachments work via Teams bot file APIs.
- Channels/groups: attachments live in M365 storage (SharePoint/OneDrive). The webhook payload only includes an HTML stub, not the actual file bytes. Graph API permissions are required to download channel attachments.
- For explicit file-first sends, use
action=upload-filewithmedia/filePath/path; optionalmessagebecomes the accompanying text/comment, andfilename(ortitle) overrides the uploaded name.
channels.msteams.mediaAllowHosts (use ["*"] to allow any host).
Authorization headers are only attached for hosts in channels.msteams.mediaAuthAllowHosts (defaults to Graph + Bot Framework hosts). Keep this list strict (avoid multi-tenant suffixes).
Sending files in group chats
Bots can send files in DMs using the built-in FileConsentCard flow. Sending files in group chats/channels requires additional setup:Why group chats need SharePoint
Bots use an application identity, while Microsoft Graph’s/me resource requires a signed-in user. To send files in group chats/channels, the bot uploads to a SharePoint site and creates a sharing link.
Setup
-
Add Graph API permissions in Entra ID (Azure AD) → App Registration:
Sites.ReadWrite.All(Application) - upload files to SharePoint.Chat.Read.All(Application) - optional, enables per-user sharing links.
- Grant admin consent for the tenant.
-
Get your SharePoint site ID:
-
Configure OpenClaw:
Sharing behavior
Per-user sharing is more secure since only chat participants can access the file. If
Chat.Read.All is missing, the bot falls back to organization-wide sharing.
Fallback behavior
Files stored location
Uploaded files are stored in a/OpenClawShared/ folder in the configured SharePoint site’s default document library.
Polls (Adaptive Cards)
OpenClaw sends Teams polls as Adaptive Cards (there is no native Teams poll API).- CLI:
openclaw message poll --channel msteams --target conversation:<id> --poll-question "..." --poll-option "..." --poll-option "...". - Votes are recorded by the gateway in OpenClaw plugin-state SQLite under
state/openclaw.sqlite. - Existing
msteams-polls.jsonfiles are imported byopenclaw doctor --fix, not by the running plugin. - The gateway must stay online to record votes.
- Polls do not auto-post result summaries, and there is no poll-results CLI yet.
Presentation cards
Send semantic presentation payloads to Teams users or conversations using themessage tool, CLI, or normal reply delivery. OpenClaw renders them as Teams Adaptive Cards from the generic presentation contract.
The presentation parameter accepts semantic blocks. When presentation is provided, the message text is optional. Buttons render as Adaptive Card submit or URL actions. Select menus are not native in the Teams renderer, so OpenClaw downgrades them to readable text before delivery.
Agent tool:
Target formats
MSTeams targets use prefixes to distinguish between users and conversations:
CLI examples:
Without the
user: prefix, names default to group or team resolution. Always use user: when targeting people by display name.Proactive messaging
- Proactive messages are only possible after a user has interacted, because OpenClaw stores conversation references at that point.
- See /gateway/configuration for
dmPolicyand allowlist gating.
Team and Channel IDs (Common Gotcha)
ThegroupId query parameter in Teams URLs is NOT the team ID used for configuration. Extract IDs from the URL path instead:
Team URL:
- Team key = path segment after
/team/(URL-decoded, e.g.,19:Bk4j...@thread.tacv2; older tenants may show@thread.skype, which is also valid). - Channel key = path segment after
/channel/(URL-decoded). - Ignore the
groupIdquery parameter for OpenClaw routing. It is the Microsoft Entra group ID, not the Bot Framework conversation ID used in incoming Teams activities.
Private channels
Bots have limited support in private channels:
Workarounds if private channels do not work:
- Use standard channels for bot interactions.
- Use DMs; users can always message the bot directly.
- Use Graph API for historical access (requires
ChannelMessage.Read.All).
Troubleshooting
Common issues
- Images not showing in channels: Graph permissions or admin consent missing. Reinstall the Teams app and fully quit/reopen Teams.
- No responses in channel: mentions are required by default; set
channels.msteams.requireMention=falseor configure per team/channel. - Version mismatch (Teams still shows old manifest): remove + re-add the app and fully quit Teams to refresh.
- 401 Unauthorized from webhook: expected when testing manually without an Azure JWT; means the endpoint is reachable but auth failed. Use Azure Web Chat to test properly.
Manifest upload errors
- “Icon file cannot be empty”: the manifest references icon files that are 0 bytes. Create valid PNG icons (32x32 for
outline.png, 192x192 forcolor.png). - “webApplicationInfo.Id already in use”: the app is still installed in another team/chat. Find and uninstall it first, or wait 5-10 minutes for propagation.
- “Something went wrong” on upload: upload via https://admin.teams.microsoft.com instead, open browser DevTools (F12) → Network tab, and check the response body for the actual error.
- Sideload failing: try “Upload an app to your org’s app catalog” instead of “Upload a custom app”; this often bypasses sideload restrictions.
RSC permissions not working
- Verify
webApplicationInfo.idmatches your bot’s App ID exactly. - Re-upload the app and reinstall in the team/chat.
- Check if your org admin has blocked RSC permissions.
- Confirm you are using the right scope:
ChannelMessage.Read.Groupfor teams,ChatMessage.Read.Chatfor group chats.
References
- Create Azure Bot - Azure Bot setup guide
- Teams Developer Portal - create/manage Teams apps
- Teams app manifest schema
- Receive channel messages with RSC
- RSC permissions reference
- Teams bot file handling (channel/group requires Graph)
- Proactive messaging
- @microsoft/teams.cli - Teams CLI for bot management
Related
- Channels Overview - all supported channels
- Pairing - DM authentication and pairing flow
- Groups - group chat behavior and mention gating
- Channel Routing - session routing for messages
- Security - access model and hardening