Build message extensions

Message extensions enable users to engage with your web service through buttons and forms within the Microsoft Teams client. Users can search or initiate actions in an external system from the compose message area, the command box, or directly from a message. The results of these interactions can be returned to the Teams client as a richly formatted card.

Important

Message extensions are available in Government Community Cloud (GCC), GCC-High, and Department of Defense (DOD) environments.

This document provides an overview of message extensions, tasks executed in various scenarios, the functioning of message extensions, action and search commands, and link unfurling.

The following image displays the locations from where message extensions can be invoked:

Note

@mentioning message extensions in the compose box isn't supported.

Scenarios where message extensions are used

Scenario Example
You need an external system to perform an action and return the result to your conversation. Reserve a resource and allow the channel to know the reserved time slot.
You need to search for something in an external system and share the results with the conversation. Search for a work item in Azure DevOps and share it with the group as an Adaptive Card.
You want to complete a complex task involving multiple steps or large amount of information in an external system and share the results with a conversation. Create a bug in your tracking system based on a Teams message, assign that bug to Bob, and send a card to the conversation thread with the bug's details.

Understand how message extensions work

A message extension consists of a web service that you host and an app manifest, which specifies the location in the Teams client where your web service is invoked. The web service utilizes the Bot Framework's messaging schema and secure communication protocol, so you must register your web service as a bot in the Bot Framework.

Note

Though it's possible to manually create the web service, we recommend to use Bot Framework SDK to work with the protocol.

In the app manifest (previously called as Teams app manifest), a single message extension is defined with up to 10 different commands. Each command defines a type, such as action or search and the locations in the client from where it's invoked. The invoke locations include the compose message area, command bar, and message. On invoke, the web service receives an HTTPS message with a JSON payload with all the relevant information. Respond with a JSON payload to inform the Teams client of the next interaction to enable.

Message extension commands types

There are two types of message extension commands, action command and search command. The message extension command type defines the UI elements and interaction flows available to your web service. Certain interactions, such as authentication and configuration, are available for both commands types.

Action commands

Action commands are used to present the users with a modal pop-up to collect or display information. When the user submits the form, your web service responds by inserting a message into the conversation directly or into the compose message area. Subsequently, the user can submit the message. For more complex workflows, you can link multiple forms together.

Action commands are triggered from the compose message area, the command box, or a message. When the command is invoked from a message, the initial JSON payload sent to your bot includes the entire message from which it was invoked. The following image displays the message extension action command dialog (referred as task module in TeamsJS v1.x):

Message extension action command dialog

Search commands

Search commands allow the users to search an external system for information manually through a search box or by pasting a link to a monitored domain into the compose message area and insert the results of the search into a message. In a simple search command flow, the initial invoke message includes the search string submitted by the user. You respond with a list of cards and card previews. The Teams client renders a list of card previews for the user. When the user selects a card from the list, the full-size card is inserted into the compose message area.

The cards are triggered from the compose message area or the command box, but not from a message. They can't be triggered from a message. The following image displays the message extension search command dialog:

Message extension search command

Note

For more information on cards, see what are cards.

Note

Link unfurling is supported only for bot-based message extensions.

When a URL is pasted in the compose message area, a web service is invoked. This functionality is known as link unfurling. You can subscribe to receive an invoke when URLs containing a specific domain are pasted into the compose message area. Your web service can unfurl the URL into a detailed card, providing more information than the standard website preview card. You can add buttons to allow the users to immediately take action without leaving the Teams client. The following images display link unfurling feature when a link is pasted in a message extension:

unfurl link

link unfurling

Build message extensions

To build a message extension, if you don't already have one, there are two ways:

  • Build message extensions using API (API-based): You can easily create a message extension from an existing API. An OpenAPI Description (OAD) document is required for this method.

  • Build message extensions using Bot Framework (Bot-based): If you want a one-on-one conversational experience, you can create a new message extension from a bot.

The following table helps you select a message extension type to get started:

API-based message extension

  • Simpler and faster to create and maintain.
  • Message extension uses an API.
  • No additional code or resources for bot logic are required.
  • Ideal for scenarios where the message extension only needs to communicate with a web service and doesn't need any complex logic or state management.
  • Traffic is privatized as they don’t depend on Azure bot infrastructure.
  • Supports search commands.

Bot-based message extension

  • More flexible.
  • Message extension uses a Bot Framework.
  • Can leverage the full capabilities of a bot.
  • Ideal for scenarios where the message extension needs to communicate with multiple services, manage complex logic or user interactions, or maintain state across sessions.
  • Supports action commands, search commands, and link unfurling.

Screenshot shows the decision tree, which helps the user to choose between API based and bot based message extension.

Select an option to start building a message extension:

Code sample

Sample name Description .NET Node.js Python Manifest
Message extension with action-based commands This sample shows how to define action commands, create dialog, and respond to dialog submit action. View View View View
Message extension with search-based commands This sample shows how to build a Search-based Message Extension. It searches nuget packages and displays the results in search based messaging extension. View View View View
Message extension action preview This sample shows how to use action preview in Messaging Extensions using Bot Framework v4. View View NA View
Message extension action for task scheduling This sample shows how to schedule a task from message extension action command and get a reminder card at a scheduled date and time. View View NA View