Updates from: 07/05/2023 03:44:12
Service Microsoft Docs article Related commit history on GitHub Change details
platform Bots https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/bots/design/bots.md
description: In this module, learn how to design and add a Teams bot and its use
ms.localizationpriority: high Last updated : 04/13/2023 # Designing your Microsoft Teams bot
platform App Fundamentals Overview https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/app-fundamentals-overview.md
description: Understand use case and Microsoft Teams app features, map use cases, plan responsive tabs for mobile. Learn Teams features and availability for GCC, GCC-High, and DOD. ms.localizationpriority: high Last updated : 03/20/2023 # Plan your app with Teams features
platform Analyze Your Apps Usage In Developer Portal https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/build-and-test/analyze-your-apps-usage-in-developer-portal.md
description: In this module, learn how to analyze your app's usage in Developer
ms.localizationpriority: medium Last updated : 12/15/2022 # Analyze your app's usage in Developer Portal
platform Apps Package https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/build-and-test/apps-package.md
Title: Package your app
description: Learn how to package your Microsoft Teams app and upload it to Teams. Create app package, enable custom uploading, ensure your app is running and accessible using HTTPs. ms.localizationpriority: high Last updated : 09/28/2022 # Create Teams app package
platform Debug https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/build-and-test/debug.md
Title: Choosing a setup to test and debug your app
description: In this module, learn options for testing and debugging Microsoft Teams apps in local and cloud-hosted environment. ms.localizationpriority: medium Last updated : 08/28/2022 # Choose a test setup and debug your Teams app
platform Deep Link Application https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/build-and-test/deep-link-application.md
description: Learn how to create deep links to an application and navigate using
ms.localizationpriority: high Last updated : 05/04/2023 # Deep link to an application
platform Deep Link Teams https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/build-and-test/deep-link-teams.md
description: Learn how to create deep links to a teams chat and navigate using
ms.localizationpriority: high Last updated : 01/31/2023 # Deep link to Teams chat
platform Deep Link Workflow https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/build-and-test/deep-link-workflow.md
description: Learn how to create deep links to a specific task in Microsoft Team
ms.localizationpriority: high Last updated : 01/31/2023 # Deep link to a workflow in Teams
The query parameters are:
* `topicName`: An optional field for chat's display name if a chat has three or more users. If this field isn't specified, the chat's display name is based on the names of the participants. * `message`: An optional field for the message text that you want to insert into the current user's compose box while the chat is in a draft state.
-To use this deep link with your bot, specify the deep link as the URL target in your card's button or tap action through the `openUrl` action type. Apps can also use Teams Java Script library 2.0 to create this without having to manually prepare the deep link. Following is an example using Microsoft Teams JavaScript client library (TeamsJS):
+To use this deep link with your bot, specify the deep link as the URL target in your card's button or tap action through the `openUrl` action type. Apps can also use Teams JavaScript library 2.0 to create this without having to manually prepare the deep link. Following is an example using Microsoft Teams JavaScript client library (TeamsJS):
```javascript if(chat.isSupported()) {
For more information, see [deep link to a tab](~/concepts/build-and-test/deep-li
Deep link doesn't open in the meeting side panel in the following scenarios:
-* If there is no active meeting.
+* If there's is no active meeting.
* If the app doesn't have `sidePanel` context declared in the app manifest. * If `openInMeeting=false` is set in the deep link. * If deep link is selected outside of the meeting window or component.
Application can read, join a meeting URL through Graph APIs. This deep link brin
| Sample name | Description | .NET |Node.js| |-|-||-|
-|Deep link consuming Subentity ID | This sample shows how to use deep-link from bot chat to tab consuming Subentity ID. It also shows deeplinks for navigate to app, navigate to chat, open profile dialog and open scheduling dialog.|[View](https://github.com/OfficeDev/Microsoft-Teams-Samples/tree/main/samples/tab-deeplink/csharp)|[View](https://github.com/OfficeDev/Microsoft-Teams-Samples/tree/main/samples/tab-deeplink/nodejs)|
+|Deep link consuming Subentity ID | This sample shows how to use deep-link from bot chat to tab consuming Subentity ID. It also shows deep links for navigate to app, navigate to chat, open profile dialog and open scheduling dialog.|[View](https://github.com/OfficeDev/Microsoft-Teams-Samples/tree/main/samples/tab-deeplink/csharp)|[View](https://github.com/OfficeDev/Microsoft-Teams-Samples/tree/main/samples/tab-deeplink/nodejs)|
platform Deep Links https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/build-and-test/deep-links.md
Title: Deep links overview
description: Learn how to create deep links and navigate using them in your Microsoft Teams apps with tabs. ms.localizationpriority: high Last updated : 04/13/2023 # Create deep links
platform Develop Your Apps With Teams Toolkit https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/build-and-test/develop-your-apps-with-teams-toolkit.md
description: Learn how to integrate your app from Teams Developer Portal to Team
ms.localizationpriority: medium Last updated : 04/24/2023 # Develop your apps with Teams Toolkit
In Teams Developer Portal, you can open and launch your project in Visual Studio
Following are the steps to open your app in Visual Studio Code:
-1. Select **Develop (Preview)** > **Open in Teams Toolkit** > **Open in Visual Studio Code (JS/TS)**.
+1. Select **Develop** > **Open in Teams Toolkit** > **Open in Visual Studio Code (JS/TS)**.
:::image type="content" source="../../assets/images/tdp/open-in-teams-toolkit.png" alt-text="Screenshot shows the Developer Portal with Open in Teams Toolkit highlighted in red." lightbox="../../assets/images/tdp/open-in-teams-toolkit.png":::
You can open your project in Visual Studio and scaffold your project in Visual S
Following are the steps to open your app in Visual Studio:
-1. Select **Develop (Preview)** > **Open in Teams Toolkit** > **Open in Visual Studio (.NET)**.
+1. Select **Develop** > **Open in Teams Toolkit** > **Open in Visual Studio (.NET) (Preview)**.
:::image type="content" source="../../assets/images/tdp/tdp-teams-toolkit-vs.png" alt-text="Screenshot shows the Developer Portal with Open in Teams Toolkit." lightbox="../../assets/images/tdp/tdp-teams-toolkit-vs.png":::
platform Manage Your Apps In Developer Portal https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/build-and-test/manage-your-apps-in-developer-portal.md
description: Learn how to configure, distribute, and manage your apps using the
ms.localizationpriority: medium Last updated : 02/28/2023 # Manage your apps in Developer Portal
After you create or upload your app, you can manage your apps in Developer Porta
* [Overview](#overview) * [Configure](#configure) * [Advanced](#advanced)
-* [Develop (Preview)](#develop-preview)
+* [Develop](#develop)
* [Publish](#publish) * [Manage rollouts](#manage-rollouts)
In the **Advanced** section, you can see the following components to manage your
* **App Customization**: You can customize your app by selecting different properties, such as **Name**, **Short description**, **Small icon**, and other properties. * **Block app by default**: You can block your app by default for users until a tenant admin selects to enable it.
-## Develop (Preview)
+## Develop
-In the **Develop (Preview)** section, you can open and develop your app in Teams Toolkit in the Visual Studio Code and Visual Studio. For more information, see [develop your app with Teams Toolkit](develop-your-apps-with-teams-toolkit.md).
+In the **Develop** section, you can open and develop your app in Teams Toolkit in the Visual Studio Code and Visual Studio. For more information, see [develop your app with Teams Toolkit](develop-your-apps-with-teams-toolkit.md).
## Publish
platform Prepare Your O365 Tenant https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/build-and-test/prepare-your-o365-tenant.md
Title: Prepare your Microsoft 365 tenant
description: In this module, learn how to get started with Teams in Microsoft 365 and create your development environment ms.localizationpriority: medium Last updated : 01/31/2023 # Prepare your Microsoft 365 tenant
platform Share In Meeting https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/build-and-test/share-in-meeting.md
description: Learn how to add the share in meeting button, which allows users to
ms.localizationpriority: medium keywords: Share in Meeting Last updated : 02/08/2023 # Share in meeting
platform Share To Teams From Personal App Or Tab https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/build-and-test/share-to-teams-from-personal-app-or-tab.md
Title: Share to Teams from personal app or tab
description: Learn how to enable the Share to Teams button on your personal app or tab, limitations and end user experience. ms.localizationpriority: medium Last updated : 12/13/2022 # Share to Teams from personal app or tab
platform Share To Teams From Web Apps https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/build-and-test/share-to-teams-from-web-apps.md
Title: Share to Teams from web apps
description: Learn to add the Share to Teams embedded button on your website, with a website preview, using Code samples ms.localizationpriority: medium Last updated : 07/22/2022 # Share to Teams from web apps
platform Share To Teams Overview https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/build-and-test/share-to-teams-overview.md
Title: Share to Teams overview
description: Learn share to Teams overview and where you can create share-to-teams button in the Teams apps and tab apps. ms.localizationpriority: mediumss Last updated : 02/09/2023 # Share to Teams
platform Shared Channels https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/build-and-test/shared-channels.md
description: Learn about Teams Connect shared channels to securely collaborate
localization_priority: Normal Last updated : 11/02/2022 # Microsoft Teams Connect shared channels
platform Teams Developer Portal https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/build-and-test/teams-developer-portal.md
description: In this article, learn how to create a brand new app and import an
ms.localizationpriority: medium Last updated : 02/27/2023 # Developer Portal for Teams
platform Test App Overview https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/build-and-test/test-app-overview.md
Title: Test your app overview
description: In this module, learn the process to test and debug your Teams custom app in Microsoft 365 and add test data to your Microsoft 365 tenant ms.localizationpriority: medium Last updated : 12/30/2022 # Test your app
platform Add Default Install Scope https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/deploy-and-publish/add-default-install-scope.md
description: Learn how to specify your Teams app's default install options, defa
ms.localizationpriority: medium Last updated : 12/15/2022 # Configure default options for Teams app
platform Apps Publish Overview https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/deploy-and-publish/apps-publish-overview.md
ms.localizationpriority: high Last updated : 02/22/2023 # Distribute your Microsoft Teams app
platform Apps Upload https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/deploy-and-publish/apps-upload.md
ms.localizationpriority: high Last updated : 04/16/2023 # Upload your app in Teams
platform Common Reasons For App Validation Failure https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/deploy-and-publish/appsource/common-reasons-for-app-validation-failure.md
ms.localizationpriority: high Last updated : 12/15/2022 # Common reasons for app validation failure
platform App Growth Lifecycle https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/deploy-and-publish/appsource/post-publish/app-growth/app-growth-lifecycle.md
description: Learn to plan growth lifecycle for your Teams app.
ms.localizationpriority: high Last updated : 02/21/2023 # Growth lifecycle for your app
platform Build App https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/deploy-and-publish/appsource/post-publish/app-growth/build-app.md
description: Learn what you can do during the build stage of your app to grow yo
ms.localizationpriority: high Last updated : 02/19/2023 # Build your collaborative app
platform Gain Traction https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/deploy-and-publish/appsource/post-publish/app-growth/gain-traction.md
description: Learn what you can do during the traction stage of your app to grow
ms.localizationpriority: high Last updated : 02/21/2023 # Gain traction for your collaborative app in the market
In the Traction stage, youΓÇÖll want to gain mindshare for your collaborative ap
<details> <summary>Plan, build readiness and drive adoption among customers</summary>
-As soon as your collaborative app is published and customers are made aware of its existence, the entire focus of your organization must shift towards driving adoption of your app among existing customers first. Follow the step-by-step guidance, resources and best practices available [here](../../../../../promote-app-adoption.md) to plan and support the rollout of your Teams app in your customersΓÇÖ organizations, navigate business decision makers, IT admins and educate end-users. The outcome of a successful app rollout among your existing customers is a pre-requisite to learn from user feedback, achieve product-market fit, acquire net new customers, monetize your app and eventually derive RoI out of your build and go-to-market investments.
+As soon as your collaborative app is published and customers are made aware of its existence, the entire focus of your organization must shift towards driving adoption of your app among existing customers first. Follow the step-by-step guidance, resources, and best practices available [here](../../../../../promote-app-adoption.md) to plan and support the rollout of your Teams app in your customersΓÇÖ organizations, navigate business decision makers, IT admins, and educate end-users. The outcome of a successful app rollout among your existing customers is a prerequisite to learn from user feedback, achieve product-market fit, acquire net new customers, monetize your app and eventually derive RoI out of your build and go-to-market investments.
[Back to top](#what-should-you-do-during-the-traction-stage) </details>
As soon as your collaborative app is published and customers are made aware of
- Your collaborative app for Teams is a key product line or channel for your customers to use your SaaS service. For this reason, training your customer success personnel on the Teams app is of critical importance. It can include how to get customers started with the app, high value scenarios and use cases, how to get the most out of the app, and so on. -- For new customers who use Microsoft 365, your customer success team must know how to lead the conversations with your Teams collaborative app. Through collaborative workflows beyond the table stakes scenarios powered by your core SaaS product, it will offer your users unique and differentiated value.
+- For new customers who use Microsoft 365, your customer success team must know how to lead the conversations with your Teams collaborative app. Through collaborative workflows beyond the table stakes scenarios powered by your core SaaS product, it offers your users unique and differentiated value.
- For existing customers who use Microsoft 365, your customer success team must immediately set up time to introduce your new Teams app to these customers and demo the experience. Then, they must work out a plan to activate these overlapping users on your Teams app. - To achieve product-led growth, you must strategically upskill your customer success teams. The aim is to access and monitor product acquisition, engagement, and task completion. They must also monitor value realization metrics or milestones for customers using the app, so that performing outreach and intervention at the right time becomes possible to be able to assist users in their journey. -- In addition, establish a process to channel customer feedback from this team. Use this feedback to inform roadmap planning and growth experimentation for your Teams app. It will be a good idea to have your customer success team conversant in day-to-day usage of Microsoft Teams. It also helps if your team is up to speed with all articles in the Teams admin-facing public documentation sections [Third-party apps in Microsoft Teams](/microsoftteams/overview-third-party-apps) and [Admin controls to govern apps](/microsoftteams/customize-apps). Your customers will benefit from their expertise in these areas.
+- In addition, establish a process to channel customer feedback from this team. Use this feedback to inform roadmap planning and growth experimentation for your Teams app. It's a good idea to have your customer success team conversant in day-to-day usage of Microsoft Teams. It also helps if your team is up to speed with all articles in the Teams admin-facing public documentation sections [Third-party apps in Microsoft Teams](/microsoftteams/overview-third-party-apps) and [Admin controls to govern apps](/microsoftteams/customize-apps). Your customers will benefit from their expertise in these areas.
[Back to top](#what-should-you-do-during-the-traction-stage) </details>
As soon as your collaborative app is published and customers are made aware of
<details> <summary>Upskill customer support staff on new Teams app</summary>
-Similar to customer success teams, it's imperative to train your customer support team on the Teams app. Upskill them on frequent user scenarios, common queries, and guidance for troubleshooting. It's also useful to train the team for any pre-configuration required, app rollout and governance of the Teams app in customer organizations. Your support team may get fairly nuanced queries about your app in Teams.
+Similar to customer success teams, it's imperative to train your customer support team on the Teams app. Upskill them on frequent user scenarios, common queries, and guidance for troubleshooting. It's also useful to train the team for any preconfiguration required, app rollout and governance of the Teams app in customer organizations. Your support team may get fairly nuanced queries about your app in Teams.
To continue delivering a delightful experience for your customers, ensure the support team has basic understanding of:
To continue delivering a delightful experience for your customers, ensure the su
- Security, compliance, and permissions for your Teams app. - App management and governance features in Teams.
-It will be a good idea to have your support team conversant in day-to-day usage of Microsoft Teams. It also helps to be up to speed with all articles in the Teams admin-facing public documentation sections [Third-party apps in Microsoft Teams](/microsoftteams/overview-third-party-apps) and [Admin controls to govern apps](/microsoftteams/customize-apps). Your customers will benefit from their expertise in these areas.
+It's a good idea to have your support team conversant in day-to-day usage of Microsoft Teams. It also helps to be up to speed with all articles in the Teams admin-facing public documentation sections [Third-party apps in Microsoft Teams](/microsoftteams/overview-third-party-apps) and [Admin controls to govern apps](/microsoftteams/customize-apps). Your customers will benefit from their expertise in these areas.
[Back to top](#what-should-you-do-during-the-traction-stage) </details>
Your own flagship annual customer or partner conference is the perfect opportuni
While at the launch stage youΓÇÖd announced the availability of your new Teams app to the entire customer base, itΓÇÖs time to build traction by going targeted. Identify a shorter list of existing customers of your SaaS product who are also Microsoft 365 customers. Drive awareness about your app among these customers through your customer success team.
-Your customer success team must set up time to introduce your new Teams app to these customers and demo the experience. Then, they must work out a plan to activate these overlapping customers on Teams. These activation motions will allow your customer success and customer support teams to learn how to drive programmatic adoption, tackle common customer queries and build real-world expertise on your Teams app.
+Your customer success team must set up time to introduce your new Teams app to these customers and demo the experience. Then, they must work out a plan to activate these overlapping customers on Teams. These activation motions will allow your customer success and customer support teams to learn how to drive programmatic adoption, tackle common customer queries, and build real-world expertise on your Teams app.
[Back to top](#what-should-you-do-during-the-traction-stage) </details> <br> <details>
-<summary>App activation in pre-identified pilot Teams customers</summary>
+<summary>App activation in preidentified pilot Teams customers</summary>
Before shipping Teams app on the marketplace, you'd have identified three to five pilot customers with whom you reviewed the envisioned app scenarios and designed UX screens or user journeys to build confidence towards the experience you were building. ItΓÇÖs time to use your customer success team to activate those select three to five customers. It won't only lead towards product-market fit but also serve as a source of rich customer feedback to improve the app in future versions.
Before shipping Teams app on the marketplace, you'd have identified three to fiv
</details> <br> <details>
-<summary>Share overlapping customer orgs to plan co-activation</summary>
+<summary>Share overlapping customer orgs to plan coactivation</summary>
-For large, strategic enterprise customers that use your SaaS product and Microsoft Teams, MicrosoftΓÇÖs customer-facing resources can partner with your sales and customer success teams to drive co-activation of your app in the customer organization. Microsoft evaluates co-activation opportunities for apps based on customer interest, adoption opportunity (sold seat size in customer account), and so on, among other criteria.
+For large, strategic enterprise customers that use your SaaS product and Microsoft Teams, MicrosoftΓÇÖs customer-facing resources can partner with your sales and customer success teams to drive coactivation of your app in the customer organization. Microsoft evaluates coactivation opportunities for apps based on customer interest, adoption opportunity (sold seat size in customer account), and so on, among other criteria.
-Contact your field, account, or engineering representatives from Microsoft to request potential co-activation of your Teams collaborative app in strategic enterprise customer accounts.
+Contact your field, account, or engineering representatives from Microsoft to request potential coactivation of your Teams collaborative app in strategic enterprise customer accounts.
[Back to top](#what-should-you-do-during-the-traction-stage) </details>
Highlight your Microsoft Teams app in a Microsoft-led digital campaign based on
Drive awareness of your published Microsoft Teams app to customer-facing roles within Microsoft, such as the field or Teams EngineeringΓÇÖs customer PMs. Contact your Microsoft field, account, or engineering representatives or connect with the [Microsoft 365 ISV Benefits Service Desk](mailto:ModernWorkISVPartner@microsoft.com) to make use of this opportunity. > [!NOTE]
-> Go-to-Market Bill of Materials (GTM BOM) for your app is a pre-requisite for using this opportunity.
+> Go-to-Market Bill of Materials (GTM BOM) for your app is a prerequisite for using this opportunity.
</details> <br>
platform Launch App https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/deploy-and-publish/appsource/post-publish/app-growth/launch-app.md
description: Learn what you can do during the launch stage of your app to grow y
ms.localizationpriority: high Last updated : 02/21/2023 # Launch your collaborative app
platform Overview App Growth https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/deploy-and-publish/appsource/post-publish/app-growth/overview-app-growth.md
description: Learn to plan, strategize and execute growth for your app.
ms.localizationpriority: high Last updated : 02/21/2023 # Strategize and execute growth for your app
It also includes some proven best practices from the team that crafted the Teams
## Putting your appΓÇÖs growth potential into perspective: How much can your app grow?
-YouΓÇÖll probably not be surprised to hear that not all apps are equal on any marketplace. Teams apps are diverse in terms of use cases fulfilled, personas served, end-user user experience, and user value delivered. As a developer, you can:
+You probably won't be surprised to hear that not all apps are equal on any marketplace. Teams apps are diverse in terms of use cases fulfilled, personas served, end-user user experience, and user value delivered. As a developer, you can:
1. **Just test waters**: Take a *foot-in-the door* approach where your SaaS backend is used to provide an elevated, ephemeral end-user experience using [link unfurling](../../../../../messaging-extensions/how-to/link-unfurling.md) feature to show rich, informative and actionable preview cards whenever URLs from your domain are shared inside Teams, even when the user doesn't have your app installed.
YouΓÇÖll probably not be surprised to hear that not all apps are equal on any ma
1. **Build a *collaborative app* product line**: Provide Teams users a unique, differentiated, rich, familiar, end to end and deeply immersive experience ΓÇô all contained in Teams and centered around collaboration versus individual productivity. [Collaborative apps](https://www.microsoft.com/en-us/microsoft-365/blog/2021/11/02/stay-in-the-flow-of-work-with-new-collaborative-apps-for-microsoft-teams/), a new app pattern, which is designed to bring people, processes, and data together to help users thrive in the hybrid workplace are positioned to transform how people in every organization do more together with the help of ubiquitous software in the flow of work. Collaborative apps offer an experience thatΓÇÖs preferred by the user over other channels where the SaaS app exists and often use one or more of Teams-only platform capabilities such as meeting extensions, Live Share, Graph APIs, message extensions, and so on, to deliver significant user value, on top of table stake scenarios.
-Needless to say, the strategy you'll adopt among the options described above will determine:
+Needless to say, the strategy you'll adopt among the options described earlier determines:
- The resulting user value your app delivers - The economic opportunity for your app
Using the guidance in this document, you can grow your collaborative app on Team
You can use one or all the three predominant types of SaaS business growth models:
-1. **Sales-led growth**: Potential customers or *sales-qualified leads (SQLs)* interact with a sales representative or a customer success representative. It can be through every stage of the buying journey. The interaction can start from understanding your SaaS appΓÇÖs feature or seeing a demo, result in purchase of your product and last through post-purchase setup and config, sales-led user onboarding, and training by customer success reps regarding how to use the app.
+1. **Sales-led growth**: Potential customers or *sales-qualified leads (SQLs)* interact with a sales representative or a customer success representative. It can be through every stage of the buying journey. The interaction can start from understanding your SaaS appΓÇÖs feature or seeing a demo, result in purchase of your product and last through post-purchase setup and config, sales-led user onboarding, and training by customer success reps on how to use the app.
1. **Marketing-led growth**: Prospective customers sign up for a product demo after building perceived value of your product. They consume marketing narratives such as, advertisements, content resources such as, blogs, videos, or downloadable e-books. As a result, a *marketing-qualified lead (MQL)* is generated for your sales team to convert. Customer retention and monetization are driven by marketing channels, content, and outreach. 1. **Product-led growth**: Your SaaS product itself is the main driving force behind customer acquisition, activation, retention, revenue growth, virality, and expansion. It's possible by offering self-serve freemium or free trial options and a straightforward frictionless onboarding process to users. Users can start using the product right away and experience direct product value first-hand with minimal sales, marketing, or customer success personnel from your side interacting with them on the way. *Product-qualified leads (PQLs)* that is users who have experienced meaningful value using the product are the ones more likely to become paying customers either directly or through upsell or intervention by your salesforce.
platform Scale App https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/deploy-and-publish/appsource/post-publish/app-growth/scale-app.md
description: Learn what you can do during the scale stage of your app to grow yo
ms.localizationpriority: high Last updated : 02/21/2023 # Scale your collaborative app
To scale your app, become CSP channel ready (see [CSP Channel Readiness Guide fo
<details> <summary>Onboard CSP resellers to extend your appΓÇÖs sales reach</summary>
-After you become CSP channel ready by completing the pre-requisites, browse through the CSP list on the Partner Center to find resellers to negotiate a partnership.
+After you become CSP channel ready by completing the prerequisites, browse through the CSP list on the Partner Center to find resellers to negotiate a partnership.
You can find detailed partner profile information in the Partner Center or using the public [partner finder](https://appsource.microsoft.com/marketplace/partner-dir) on AppSource.
You can find detailed partner profile information in the Partner Center or using
<details> <summary>Tailor SaaS offers for customers and CSP resellers</summary>
-Teams marketplace allows you to create private offers, that is, time-bound pricing of your SaaS subscription for Teams app with customized, pre-negotiated terms for [CSPs](/azure/marketplace/isv-csp-reseller). You can also create [private plans](/marketplace/private-plans) for targeted customers to offer negotiated pricing.
+Teams marketplace allows you to create private offers, that is, time-bound pricing of your SaaS subscription for Teams app with customized, prenegotiated terms for [CSPs](/azure/marketplace/isv-csp-reseller). You can also create [private plans](/marketplace/private-plans) for targeted customers to offer negotiated pricing.
Help your sales team secure large new customer deals leading with your Teams collaborative app. Offer private pricing to your customers via the Teams marketplace, leaving tax remittance, payments, and subscription billing to Microsoft.
Help your sales team secure large new customer deals leading with your Teams col
<details> <summary>Digital webinars for existing customers and new prospects</summary>
-Host digital webinars at regular cadences to showcase the value of your Teams app to customers. Your customer success team and pre-sales or sales team must funnel relevant existing customers and new prospects as preferred leads to invite for the webinars. Ensure that you include links to sign up for the webinars on your appΓÇÖs landing page on your website and your app store listing. It attracts new, exploratory users who may be interested in learning more about your app.
+Host digital webinars at regular cadences to showcase the value of your Teams app to customers. Your customer success team and presales or sales team must funnel relevant existing customers and new prospects as preferred leads to invite for the webinars. Ensure that you include links to sign up for the webinars on your appΓÇÖs landing page on your website and your app store listing. It attracts new, exploratory users who may be interested in learning more about your app.
Get in touch with your field, account, or engineering representatives from Microsoft to request their participation in hero instances of these direct-to-customer webinars.
After developing it, host these customer stories on the landing page of the Team
<details> <summary>Showcase Teams app in leading industry events</summary>
-While building traction, you showcased the collaborative app in Teams during your annual customer conference. ItΓÇÖs time to expand the coverage to well-known public industry events where you've a prominent presence or conferences which you sponsor. Your executives can include the Teams app in their keynote or showcase your innovation centre stage. Doing so is bound to attract both existing and new prospective customers.
+While building traction, you showcased the collaborative app in Teams during your annual customer conference. ItΓÇÖs time to expand the coverage to well-known public industry events where you've a prominent presence or conferences which you sponsor. Your executives can include the Teams app in their keynote or showcase your innovation center stage. Doing so is bound to attract both existing and new prospective customers.
[Back to top](#what-should-you-do-during-the-scale-stage) </details>
Remember, your goal is to get users to experience value at the earliest by using
</details> <br> <details>
-<summary>Co-activation in mutually identified existing customers</summary>
+<summary>Coactivation in mutually identified existing customers</summary>
-Based on the list youΓÇÖve shared with your Microsoft field, account, or engineering representatives while building traction, itΓÇÖs time to execute co-activation and adoption of your collaborative app in customer accounts with significant seat sizes. Your customer success team will play a major driving role in this motion. They can work alongside business decision makers, IT decision makers, and end-users, that is, employees of the customer organization who are going to use your app inside Teams.
+Based on the list youΓÇÖve shared with your Microsoft field, account, or engineering representatives while building traction, itΓÇÖs time to execute coactivation and adoption of your collaborative app in customer accounts with significant seat sizes. Your customer success team will play a major driving role in this motion. They can work alongside business decision makers, IT decision makers, and end-users, that is, employees of the customer organization who are going to use your app inside Teams.
Remember, just enabling the app inside Teams won't be enough. Instead, adoption and change management practices led by your customer success team such as organization-wide emails at regular cadences, flyers, retention campaigns, user trainings, identifying and scaling through app champions in each team, gamification and constantly keeping an eye on app usage metrics within the customerΓÇÖs tenant is required to form a habit among users.
Ensure that you [instrument code and track analytics](../../../../design/overvie
## Where can Microsoft help? <details>
-<summary>Co-activation in mutually identified existing customers</summary>
+<summary>Coactivation in mutually identified existing customers</summary>
-Microsoft will evaluate co-activation opportunities in large customer accounts. Evaluation is based on customer interest, adoption opportunity (sold seat size in customer account), and so on, among other criteria.
+Microsoft will evaluate coactivation opportunities in large customer accounts. Evaluation is based on customer interest, adoption opportunity (sold seat size in customer account), and so on, among other criteria.
</details> <br>
Connect with the [ISV Marketplace Success Rewards Program team](mailto:rewards@m
<details> <summary>Select, area-specific marketing to local Teams customers</summary>
-Your field, account or engineering representatives from Microsoft will reach out to include your collaborative app in specific, local subsidiary-drive GTM opportunities focused on Teams customers located in the subsidiaryΓÇÖs market.
+Your field, account, or engineering representatives from Microsoft will reach out to include your collaborative app in specific, local subsidiary-drive GTM opportunities focused on Teams customers located in the subsidiaryΓÇÖs market.
</details> <br>
Get in touch with the Microsoft field, account or engineering representatives to
<details> <summary>Include your app in global outreach to Microsoft sellers</summary>
-Expose your solution to Microsoft field sellers and executives through an on-demand webinar featuring your speakers and content. Microsoft will post your on-demand webinar to an internal site and promote it to Microsoft sellers. Share the internal Microsoft on-demand webinar link with your Microsoft contacts as well. Connect with the [ISV Marketplace Success Rewards Program team](mailto:rewards@microsoft.com) to check eligibility, seek guidance and execute this motion.
+Expose your solution to Microsoft field sellers and executives through an on-demand webinar featuring your speakers and content. Microsoft posts your on-demand webinar to an internal site and promote it to Microsoft sellers. Share the internal Microsoft on-demand webinar link with your Microsoft contacts as well. Connect with the [ISV Marketplace Success Rewards Program team](mailto:rewards@microsoft.com) to check eligibility, seek guidance and execute this motion.
</details> <br>
platform Succeed https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/deploy-and-publish/appsource/post-publish/app-growth/succeed.md
description: Learn what you can do during the final stage of your app to grow yo
ms.localizationpriority: high Last updated : 02/21/2023 # Succeed with your collaborative app
A core product-led growth initiative is capturing Teams marketplace trials, tria
<details> <summary>Deepen investment into Teams-app driven growth engine</summary>
-This stage is ripe to further sales, customer success and product-led initiatives to grow your SaaS business leading with the Teams collaborative app product line youΓÇÖve built. Consider making further investments into your sales, customer success, marketing and product teams who are responsible for the Teams app so that you can win more customer deals, collaborate with Microsoft on GTM and realize net new economic value through purchases and renewals on the commercial marketplace.
+This stage is ripe to further sales, customer success, and product-led initiatives to grow your SaaS business leading with the Teams collaborative app product line youΓÇÖve built. Consider making further investments into your sales, customer success, marketing and product teams who are responsible for the Teams app so that you can win more customer deals, collaborate with Microsoft on GTM and realize net new economic value through purchases and renewals on the commercial marketplace.
</details> <br>
Impactful case studies of how investing in a collaborative app resulted in growt
</details> <br> <details>
-<summary>Expand customer co-activation and joint new pitches</summary>
-
-Microsoft will evaluate co-activation opportunities in large customer accounts based on customer interest, adoption opportunity (sold seat size in customer account), and so on, among other criteria. Get in touch with your Microsoft field, account, or engineering representatives to discuss potential joint customer pitches in large customer accounts.
+<summary>Expand customer coactivation and joint new pitches</summary>
+Microsoft will evaluate coactivation opportunities in large customer accounts based on customer interest, adoption opportunity (sold seat size in customer account), and so on, among other criteria. Get in touch with your Microsoft field, account, or engineering representatives to discuss potential joint customer pitches in large customer accounts.
</details> <br> <details>
platform Overview https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/deploy-and-publish/appsource/post-publish/overview.md
ms.localizationpriority: high Last updated : 10/19/2022 # Maintain your published Microsoft Teams app
platform Teams Store Ranking Parameters https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/deploy-and-publish/appsource/post-publish/teams-store-ranking-parameters.md
ms.localizationpriority: high Last updated : 01/09/2023 # Microsoft Teams store ranking parameters
platform Test Preview For Monetized Apps https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/deploy-and-publish/appsource/prepare/Test-preview-for-monetized-apps.md
description: Create and test SaaS Preview offers for Teams app before pushing th
ms.localizationpriority: high Last updated : 12/26/2022 # Test preview for monetized apps
platform Create Partner Center Dev Account https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/deploy-and-publish/appsource/prepare/create-partner-center-dev-account.md
ms.localizationpriority: high Last updated : 12/20/2022 # Create a Partner Center developer account
platform End User Purchase Experience https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/deploy-and-publish/appsource/prepare/end-user-purchase-experience.md
ms.localizationpriority: high Last updated : 04/06/2023 # Purchase and manage app subscriptions and licenses
platform In App Purchase Flow https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/deploy-and-publish/appsource/prepare/in-app-purchase-flow.md
ms.localizationpriority: high Last updated : 01/31/2023 # In-app purchases
platform Include Saas Offer https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/deploy-and-publish/appsource/prepare/include-saas-offer.md
ms.localizationpriority: high Last updated : 03/21/2023 # Include a SaaS offer with your Teams app
platform Manage Third Party Apps License https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/deploy-and-publish/appsource/prepare/manage-third-party-apps-license.md
ms.localizationpriority: high Last updated : 04/06/2023 # Set up Microsoft license management
platform Monetize Overview https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/deploy-and-publish/appsource/prepare/monetize-overview.md
ms.localizationpriority: high Last updated : 11/23/2022 # Monetize your app
platform Submission Checklist https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/deploy-and-publish/appsource/prepare/submission-checklist.md
ms.localizationpriority: high Last updated : 01/06/2023 # Prepare your Teams store submission
platform Teams Store Validation Guidelines https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/deploy-and-publish/appsource/prepare/teams-store-validation-guidelines.md
ms.localizationpriority: high Last updated : 03/21/2023 # Microsoft Teams store validation guidelines
platform Update Apple Store Team Connect Id https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/deploy-and-publish/appsource/prepare/update-apple-store-team-connect-id.md
ms.localizationpriority: medium Last updated : 12/15/2022 # Update Apple Developer Program Team ID
platform Publish https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/deploy-and-publish/appsource/publish.md
ms.localizationpriority: high Last updated : 12/15/2022 # Publish your app to the Microsoft Teams store
platform Resolve Submission Issues https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/deploy-and-publish/appsource/resolve-submission-issues.md
ms.localizationpriority: medium Last updated : 09/28/2022 # Resolve issues if your Teams store submission fails
platform Activity Feed Notifications https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/design/activity-feed-notifications.md
description: Learn how to design activity feed notifications for your Teams app
ms.localizationpriority: medium Last updated : 06/28/2022 # Designing activity feed notifications for your Microsoft Teams app
platform App Structure https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/design/app-structure.md
ms.localizationpriority: medium Last updated : 06/01/2022 # Understand the Microsoft Teams app structure
platform Design Teams App Advanced Ui Components https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/design/design-teams-app-advanced-ui-components.md
description: Learn about the Teams UI components, such as breadcrumbs, notificat
ms.localizationpriority: medium Last updated : 05/17/2023 # Designing your Microsoft Teams app with advanced UI components
platform Design Teams App Artwork Store https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/design/design-teams-app-artwork-store.md
ms.localizationpriority: medium Last updated : 05/23/2023 # Microsoft Teams app artwork for store
platform Design Teams App Basic Ui Components https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/design/design-teams-app-basic-ui-components.md
description: Learn how to use UI components from Teams UI kit to build Microsoft Teams apps. Learn to use UI components such a Fluent kit, breadcrumb, button card, carousel, dropdown, and toggle. ms.localizationpriority: medium Last updated : 05/17/2023 # Designing your Microsoft Teams app with basic Fluent UI components
platform Design Teams App Color https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/design/design-teams-app-color.md
ms.localizationpriority: medium Last updated : 05/23/2023 # Colors for your Microsoft Teams app
platform Design Teams App Fundamentals https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/design/design-teams-app-fundamentals.md
description: Learn about the basics of designing your Microsoft Teams app, inclu
ms.localizationpriority: medium Last updated : 07/26/2022 # Microsoft Teams app design system
platform Design Teams App Icon Store Appbar https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/design/design-teams-app-icon-store-appbar.md
ms.localizationpriority: medium Last updated : 05/23/2023 # Microsoft Teams app icon for store and app bar
platform Design Teams App Layout Scaling https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/design/design-teams-app-layout-scaling.md
ms.localizationpriority: medium Last updated : 05/23/2023 # Layout and scaling for your Microsoft Teams app
platform Design Teams App Overview https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/design/design-teams-app-overview.md
description: Learn how to design Microsoft Teams apps and resources include the
ms.localizationpriority: medium Last updated : 12/27/2022 # Designing your Microsoft Teams app
platform Design Teams App Process https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/design/design-teams-app-process.md
description: Learn how and when you might use Microsoft tools and resources to d
ms.localizationpriority: mediums Last updated : 06/28/2022 # Design process for Microsoft Teams apps
platform Design Teams App Shape Elevation https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/design/design-teams-app-shape-elevation.md
ms.localizationpriority: medium Last updated : 05/23/2023 # Shape and elevation for designing your Teams app
platform Design Teams App Type https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/design/design-teams-app-type.md
ms.localizationpriority: medium Last updated : 05/23/2023 # Typography for your Microsoft Teams app
platform Design Teams App Ui Templates https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/design/design-teams-app-ui-templates.md
description: Learn to design your app faster with standardized UI components, la
ms.localizationpriority: medium Last updated : 12/27/2022 # Designing your Microsoft Teams app with UI templates
platform Enable App Customization https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/design/enable-app-customization.md
description: In this module, understand how Teams admins can customize your Team
ms.localizationpriority: medium Last updated : 12/10/2022 # Enable customization for your Microsoft Teams app
platform Map Use Cases https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/design/map-use-cases.md
description: Identify how your app's use cases can work within the Teams experie
ms.localizationpriority: high Last updated : 12/01/2022 # Map your use cases to Teams app features
platform Overview Analytics https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/design/overview-analytics.md
description: Learn to plan and build analytics for your Teams app.
ms.localizationpriority: high Last updated : 12/09/2022 # Overview
platform Personal Apps https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/design/personal-apps.md
description: Learn how to implement the design guidelines including UI elements
ms.localizationpriority: medium Last updated : 05/04/2023 # Designing your personal app for Microsoft Teams
platform Plan Code Instrumentation https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/design/plan-code-instrumentation.md
description: Learn about planning code instrumentation using an analytics servic
ms.localizationpriority: high Last updated : 11/28/2022 # Plan code instrumentation using analytics service
platform Plan Responsive Tabs For Teams Mobile https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/design/plan-responsive-tabs-for-teams-mobile.md
description: With this learning module, you'll learn how to plan for creating an
ms.localizationpriority: medium Last updated : 12/09/2022 # Plan responsive tabs for Teams mobile
platform Plan To Monetize https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/design/plan-to-monetize.md
description: Plan to monetize your Microsoft Teams app and also understand the b
ms.localizationpriority: high Last updated : 06/28/2022 # Plan to monetize your app
platform Planning Checklist https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/design/planning-checklist.md
description: Learn to plan your app using the checklist to ensure your plan covers the important details of app development. Plan app's lifecycle. Plan to host your Teams app. ms.localizationpriority: high Last updated : 07/28/2022 # Teams app planning checklist
platform Strategize Measure https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/design/strategize-measure.md
description: Learn about deciding what to measure using instrumentation data for
ms.localizationpriority: high Last updated : 12/09/2022 # Strategize and decide what to measure
platform Understand Use Cases https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/design/understand-use-cases.md
description: Learn about Microsoft Teams app capabilities such as, tabs, bots, m
ms.localizationpriority: high Last updated : 12/09/2022 # Understand your use cases
platform Browser Device Permissions https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/device-capabilities/browser-device-permissions.md
Title: Device permissions for the browser
description: app that requires device permissions, such as camera or microphone access, now require users to manually grant permission at a per app level in the web browser. localization_priority: medium Last updated : 03/21/2023 # Device permissions for the browser
platform Device Capabilities Overview https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/device-capabilities/device-capabilities-overview.md
description: Learn how to integrate native device capabilities, such as, locatio
ms.localizationpriority: medium Last updated : 02/08/2023 # Device capabilities
platform Location Capability https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/device-capabilities/location-capability.md
description: Learn how to use Teams JavaScript client library to leverage locati
ms.localizationpriority: high Last updated : 12/13/2022 # Integrate location capabilities
platform Media Capabilities https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/device-capabilities/media-capabilities.md
description: Learn how to use Teams JavaScript client library to enable media capabilities using code examples and also learn the advantage of integrating media capabilities. ms.localizationpriority: medium Last updated : 12/13/2022 # Integrate media capabilities
platform Native Device Permissions https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/device-capabilities/native-device-permissions.md
description: How to update your app manifest in order to request access to nativ
ms.localizationpriority: medium Last updated : 03/21/2023 # Request device permissions for your Teams app
platform People Picker Capability https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/device-capabilities/people-picker-capability.md
description: In this article, learn how to use Teams JavaScript client library t
ms.localizationpriority: high Last updated : 02/24/2023 # Integrate People Picker
platform Qr Barcode Scanner Capability https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/concepts/device-capabilities/qr-barcode-scanner-capability.md
description: Learn how to use Teams JavaScript client library to leverage QR or
ms.localizationpriority: medium Last updated : 02/08/2023 # Integrate QR or barcode scanner capability
platform Feedback https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/feedback.md
Title: Microsoft Teams developer community support and feedback
description: Learn about Developer community and help required to raise issues, limitations, and general questions. Ask questions related to SDK and samples, documentation feedback, feature requests. ms.localizationpriority: medium Last updated : 09/28/2022 # Support and feedback
platform Glossary https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/get-started/glossary.md
Title: Microsoft Teams developer documentation - Glossary
description: Learn about the common terms, meanings, and definitions used in Microsoft Teams developer documentation. ms.localizationpriority: high Last updated : 06/12/2023 # Glossary
platform Teams App Permissions https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/graph-api/App-permissions/Teams-app-permissions.md
description: In this module, learn how Teams apps are managed in different place
ms.localizationpriority: medium Last updated : 10/31/2022 # Permissions in Teams app
platform Import External Messages To Teams https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/graph-api/import-messages/import-external-messages-to-teams.md
description: Describes how to use Microsoft Graph to import messages from an ext
ms.localizationpriority: high Last updated : 09/02/2022 # Import third-party platform messages to Teams using Microsoft Graph
platform Api Transcripts https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/graph-api/meeting-transcripts/api-transcripts.md
Title: Use Graph APIs to fetch transcript
description: Describes the APIs to fetch meeting transcripts ms.localizationpriority: high Last updated : 08/03/2022 # Use Graph APIs to fetch transcript
platform Fetch Id https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/graph-api/meeting-transcripts/fetch-id.md
Title: Obtain meeting ID and organizer ID for fetching meeting transcripts
description: Describes the process of Obtain meeting ID and organizer ID for fetching meeting transcripts ms.localizationpriority: high Last updated : 01/05/2023 # Obtain meeting ID and organizer ID
platform Overview Transcripts https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/graph-api/meeting-transcripts/overview-transcripts.md
Title: Use Microsoft Graph to fetch transcripts for a Teams meeting
description: Describes the process, scenarios, and APIs to fetch transcripts in the post-meeting scenario. ms.localizationpriority: high Last updated : 02/20/2023 # Get meeting transcripts using Graph APIs
platform Graph Proactive Bots And Messages https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/graph-api/proactive-bots-and-messages/graph-proactive-bots-and-messages.md
description: Install app proactively using Graph APIs. Check if your bot is curr
ms.localizationpriority: medium Last updated : 12/15/2022 # Send proactive installation messages
platform Grant Resource Specific Consent https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/graph-api/rsc/grant-resource-specific-consent.md
ms.localizationpriority: medium
Last updated : 03/28/2023 # Grant RSC permissions to your app
platform Resource Specific Consent https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/graph-api/rsc/resource-specific-consent.md
Title: Overview resource-specific consent in Teams
description: In this article, learn about resource-specific consent (RSC) permissions, types of RSC and supported RSC permissions. ms.localizationpriority: medium Last updated : 03/20/2023 # Resource-specific consent for your Teams app
platform Test Chat Rsc Json File https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/graph-api/rsc/test-chat-rsc-json-file.md
ms.localizationpriority: medium
Last updated : 12/15/2022 # Test chat RSC Postman collection for JSON
platform Test Resource Specific Consent https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/graph-api/rsc/test-resource-specific-consent.md
ms.localizationpriority: medium
keywords: teams authorization OAuth SSO Microsoft Azure Active Directory (Azure AD) rsc Postman Graph Last updated : 03/28/2023 # Test resource-specific consent permissions in Teams
platform Test Team Rsc Json File https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/graph-api/rsc/test-team-rsc-json-file.md
description: In this module, learn how to test resource-specific consent for a t
ms.localizationpriority: medium Last updated : 12/15/2022 # Test team RSC Postman collection JSON
platform Azure Bot Channels Registration https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/includes/bots/azure-bot-channels-registration.md
description: With this learning module, learn about Azure bot channels for regis
localization_priority: Normal Last updated : 06/02/2022 1. In the [Microsoft Azure portal](https://ms.portal.azure.com/#home), under Azure services, select **Create a resource**.
platform Teams Bot Samples https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/includes/bots/teams-bot-samples.md
description: With this learning module, learn about Teams samples for Bot Framew
localization_priority: Normal Last updated : 02/20/2023 ## Teams bot samples
platform Messaging Extension Design https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/messaging-extensions/design/messaging-extension-design.md
ms.localizationpriority: high Last updated : 05/17/2022 # Designing your Microsoft Teams message extension
platform What Are Messaging Extensions https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/messaging-extensions/what-are-messaging-extensions.md
description: Learn how message extensions are used, its types, and scenarios whe
ms.localizationpriority: medium Last updated : 02/24/2023 # Message extensions
platform Promote App Adoption https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/promote-app-adoption.md
description: Learn about the best practices and guidance for app adoption and pr
ms.localizationpriority: medium Last updated : 03/02/2023 # Five steps to drive adoption of your app
platform App Templates https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/samples/app-templates.md
Title: App templates for Microsoft Teams
description: Learn to use app templates for Microsoft Teams platform with detailed instructions on deploying and installing an app. ms.localizationpriority: medium Last updated : 04/28/2023 # App templates for Microsoft Teams
platform App With Collaboration Controls https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/samples/app-with-collaboration-controls.md
description: In this module, learn how to build a model-driven app with Collabor
ms.localizationpriority: medium Last updated : 10/07/2022 # Create a new model-driven app with Collaboration controls for Teams
platform Collaboration Api Reference https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/samples/collaboration-api-reference.md
description: In this module, learn about Collaboration controls and Settings RES
ms.localizationpriority: medium Last updated : 01/10/2023 # Collaboration control and Settings REST API reference
platform Collaboration Control Power Automate https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/samples/collaboration-control-power-automate.md
description: In this module, learn about Power Automate in Collaboration control
ms.localizationpriority: medium Last updated : 01/11/2023 # Power Automate
platform Collaboration Control https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/samples/collaboration-control.md
description: In this module, learn how Collaboration controls allow makers to bu
ms.localizationpriority: medium Last updated : 01/18/2023 # Collaboration controls
platform Collaboration Controls Limitations https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/samples/collaboration-controls-limitations.md
description: In this module, learn about limitations and known issues in Collabo
ms.localizationpriority: medium Last updated : 09/30/2022 # Limitations and known issues
platform Configure Tasks https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/samples/configure-tasks.md
description: In this module, learn how to configure Tasks for external clients i
ms.localizationpriority: medium Last updated : 09/30/2022 # Configure Tasks for external clients
platform Deploy Collaboration Control In Teams https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/samples/deploy-collaboration-control-in-teams.md
description: In this module, learn how to deploy your app with Collaboration con
ms.localizationpriority: medium Last updated : 10/04/2022 # Deploy Collaboration controls to Microsoft Teams
platform Install Collaboration Control https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/samples/install-collaboration-control.md
Title: Install Collaboration controls- description: In this module, learn how to install Collaboration controls with power apps and Microsoft 365 E3 and how to install collaboration controls solutions. Last updated : 10/04/2022 ms.localizationpriority: medium-+
platform Integrate Web Apps Overview https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/samples/integrate-web-apps-overview.md
description: In this article, you'll get started with integrating web applicatio
ms.localizationpriority: high Last updated : 12/15/2022 # Integrate web apps
platform Shifts Wfm Connectors https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/samples/shifts-wfm-connectors.md
Title: Production-ready Shifts Connectors description: Learn about the benefits of using Workforce management Shifts connectors for Teams, such as Kronos-to-Teams Shifts connector and JDA-to-Teams Shifts connector. Previously updated : 03/09/2020 Last updated : 08/10/2022 ms.localizationpriority: medium
platform Teams Low Code Solutions https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/samples/teams-low-code-solutions.md
Title: Create low-code custom apps for Microsoft Teams
description: Learn about the available Microsoft low and no code solutions with Teams an Microsoft Power Platform. ms.localizationpriority: medium Last updated : 02/28/2023 # Create low-code custom apps for Teams
platform Virtual Assistant https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/samples/virtual-assistant.md
Title: Create Virtual Assistant
description: Learn how to create Virtual Assistant bot for Teams using Code examples and snippets with features such as, Adaptive cards, handling interruptions and more. ms.localizationpriority: medium Last updated : 12/21/2022 # Create Virtual Assistant
platform Virtual Table Entity References https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/samples/virtual-table-entity-references.md
description: In this module, learn about virtual tables entity reference and the
ms.localizationpriority: medium Last updated : 09/30/2022 # Virtual tables entity reference
platform Virtual Tables Api https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/samples/virtual-tables-api.md
description: In this module, learn about Virtual Tables web API for Collaboratio
ms.localizationpriority: medium Last updated : 09/30/2022 # Virtual tables Web API
platform Virtual Tables For Tasks https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/samples/virtual-tables-for-tasks.md
description: In this module, learn about Virtual tables for Tasks, Meetings, and
ms.localizationpriority: medium Last updated : 01/11/2023 # Virtual tables for Tasks, Meetings, Files
platform Tabs Mobile https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/tabs/design/tabs-mobile.md
Title: Tabs on mobile
description: Learn how tab functions on Android and iOS Microsoft Teams clients (mobile), their authentication, low bandwidth connection, testing, or distribution. ms.localizationpriority: high Last updated : 11/02/2022 # Tabs on mobile
platform Tabs https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/tabs/design/tabs.md
description: Learn how to design a tab for desktop, web, and mobile, and get the
ms.localizationpriority: high Last updated : 05/04/2023 # Design your tab for Microsoft Teams
platform Access Teams Context https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/tabs/how-to/access-teams-context.md
Title: Get context for your tab
description: Learn to context for your tab, context of user, team, or company, access information, retrieve context in private or shared channels, and handle theme change. ms.localizationpriority: high Last updated : 03/02/2023 # Get context for your tab
platform Auth Flow Tab https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/tabs/how-to/authentication/auth-flow-tab.md
Title: Enable authentication using third-party OAuth provider
description: Learn about Teams authentication flow in tabs using third-party OAuth provider with Azure AD configuration and code samples. ms.localizationpriority: high Last updated : 01/05/2023 # Enable authentication using third-party OAuth provider
platform Auth Oauth Provider https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/tabs/how-to/authentication/auth-oauth-provider.md
Title: Use external OAuth providers
description: Authenticate your app users using external OAuth providers and learn how to add it to external browser. ms.localizationpriority: high Last updated : 09/01/2022 # Use external OAuth providers
platform Auth Tab Aad https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/tabs/how-to/authentication/auth-tab-aad.md
Title: Configure third party OAuth authentication
description: In this article, learn Teams authentication tabs Microsoft Azure AD, authentication in Teams and how to use it in tabs. ms.localizationpriority: medium Last updated : 12/13/2022 # Configure third party OAuth IdP authentication
platform Tab Sso Code https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/tabs/how-to/authentication/tab-sso-code.md
description: Update code in your tab app for requesting and receiving access tok
ms.localizationpriority: high keywords: teams authentication tabs Microsoft Azure Active Directory (Azure AD) Graph API Last updated : 12/13/2022 # Add code to enable SSO
platform Tab Sso Graph Api https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/tabs/how-to/authentication/tab-sso-graph-api.md
description: Configure additional permissions and scopes, get access token with
ms.localizationpriority: high keywords: teams authentication tabs Microsoft Azure Active Directory (Azure AD) Graph API Delegated permission access token scope Last updated : 04/06/2023 # Extend tab app with Microsoft Graph permissions and scopes
If you need to access Microsoft Graph data, configure your server-side code to:
- [OAuth 2.0 On-Behalf-Of flow](/azure/active-directory/develop/v2-oauth2-on-behalf-of-flow) - [Get access for MS Graph](/graph/auth-v2-user) - [Token cache serialization in MSAL.NET](/azure/active-directory/develop/msal-net-token-cache-serialization?tabs=aspnet)-- [Microsoft Teams MSAL2 provider](/graph/toolkit/providers/teams-msal2)
+- [Microsoft Teams MSAL2 provider](/graph/toolkit/providers/msal2)
platform Tab Sso Manifest https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/tabs/how-to/authentication/tab-sso-manifest.md
description: Update Teams manifest for enabling Single sign-on (SSO) for tabs an
ms.localizationpriority: high keywords: teams authentication tabs Microsoft Azure Active Directory (Azure AD) Graph API Last updated : 11/21/2022 # Update manifest for SSO and preview app
platform Tab Sso Overview https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/tabs/how-to/authentication/tab-sso-overview.md
Title: Overview to authentication for tabs using SSO in Teams with Azure AD
description: Learn about Single sign-on (SSO) authentication in Teams and how to enable it in tabs. ms.localizationpriority: high Last updated : 01/17/2023 # Enable SSO for tab app
platform Tab Sso Register Aad https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/tabs/how-to/authentication/tab-sso-register-aad.md
description: Configure Single sign-on (SSO) with Azure AD by configuring App ID
ms.localizationpriority: high keywords: teams authentication tabs Microsoft Azure Active Directory (Azure AD) access token SSO tenancy scope Last updated : 02/01/2023 # Configure your tab app in Azure AD
platform Tab Sso Troubleshooting https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/tabs/how-to/authentication/tab-sso-troubleshooting.md
description: Troubleshoot Single sign-on (SSO) authentication issues in Teams an
ms.localizationpriority: high keywords: teams authentication tabs Microsoft Azure Active Directory (Azure AD) SSO errors questions Last updated : 01/31/2023 # Troubleshoot SSO authentication in Teams
platform Build Adaptive Card Tabs https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/tabs/how-to/build-adaptive-card-tabs.md
description: Learn to build tabs using Adaptive Cards where front end is rendere
ms.localizationpriority: high Last updated : 05/02/2023 # Build tabs with Adaptive Cards
platform Conversational Tabs https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/tabs/how-to/conversational-tabs.md
description: Learn to create conversational tabs in Microsoft Teams to start, co
ms.localizationpriority: high Last updated : 01/30/2023 # Create conversational tabs
platform Create Channel Group Tab https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/tabs/how-to/create-channel-group-tab.md
description: Create custom channel, group tab with Node.js, ASP.NET Core, ASP.NE
ms.localizationpriority: high zone_pivot_groups: teams-app-environment-blazor Last updated : 02/27/2023 # Create a channel tab or group tab
platform Create Personal Tab https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/tabs/how-to/create-personal-tab.md
description: Learn to build a personal tab. Select the Node.js, ASP.NET Core, or
ms.localizationpriority: high zone_pivot_groups: teams-app-environment Last updated : 02/27/2023 # Create a personal tab
platform Configuration Page https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/tabs/how-to/create-tab-pages/configuration-page.md
description: Create configuration page to collect information from user. Also, g
ms.localizationpriority: high Last updated : 01/31/2023 # Create a configuration page
platform Content Page https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/tabs/how-to/create-tab-pages/content-page.md
Title: Create a content page
description: Learn about webpage within Teams client, and is part of personal, channel, or group custom tab. Create content page and embed it as webview inside task module. ms.localizationpriority: high Last updated : 11/23/2022 # Create a content page
platform Removal Page https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/tabs/how-to/create-tab-pages/removal-page.md
Title: Create a tab removal page
description: Learn to enable your tab to be reconfigured after installation. Extend user experience by supporting removal and modification options in Microsoft Teams app. ms.localizationpriority: high Last updated : 12/05/2022 # Create a removal page
platform Developer Tools https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/tabs/how-to/developer-tools.md
Title: DevTools for Microsoft Teams tabs
description: In this module, learn how to get to the DevTools when using the Microsoft Teams Desktop Client and debugging ms.localizationpriority: medium Last updated : 08/29/2022 # DevTools for Microsoft Teams tabs
platform Tab Requirements https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/tabs/how-to/tab-requirements.md
Title: Prerequisites
description: In this article, learn the prerequisites to build Microsoft Teams personal, channel, or group tab. Know the tools required to build your tab. ms.localizationpriority: high Last updated : 03/28/2023 # Prerequisites
platform Tabs In Sharepoint https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/tabs/how-to/tabs-in-sharepoint.md
Title: Add Teams tab to SharePoint
description: Learn how to deploy your existing Teams tab to SharePoint as a SharePoint Framework web part using code samples. ms.localizationpriority: medium Last updated : 06/08/2023 # Add Teams tab to SharePoint
platform Using Fluid Msteam https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/tabs/how-to/using-fluid-msteam.md
description: Tutorial for integrating Fluid-powered real-time collaboration features into a Microsoft Teams tab application ms.localizationpriority: medium Last updated : 12/13/2022 # Use Fluid with Teams
platform Using Teams Client Library https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/tabs/how-to/using-teams-client-library.md
keywords: SDK TeamsJS Teams client JavaScript library Last updated : 05/05/2023 # Teams JavaScript client library
platform Tabs Link Unfurling https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/tabs/tabs-link-unfurling.md
description: Learn about Stage View and Collaborative Stage View, a full screen
ms.localizationpriority: high Last updated : 06/05/2023 # Tabs link unfurling and Stage View
platform What Are Tabs https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/tabs/what-are-tabs.md
description: Learn to build tabs, webpages embedded in Microsoft Teams. Create a content page as part of personal, channel, or group tab. ms.localizationpriority: high Last updated : 05/04/2023 # Build tabs for Teams
platform Cards And Task Modules https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/task-modules-and-cards/cards-and-task-modules.md
description: Learn about types of cards supported in bots for Teams, such as, Ad
ms.localizationpriority: medium Last updated : 01/09/2023 # Cards and task modules
platform Overview https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/task-modules-and-cards/cards/Universal-actions-for-adaptive-cards/Overview.md
Title: Overview of Universal Actions for Adaptive Cards
description: Learn Universal Actions for Adaptive Cards, such as user-specific views, sequential workflow support, and more for desktop and mobile environments ms.localizationpriority: medium Last updated : 02/28/2023 # Universal Actions for Adaptive Cards
platform Sequential Workflows https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/task-modules-and-cards/cards/Universal-actions-for-adaptive-cards/Sequential-Workflows.md
description: In this module, learn about Sequential Workflows for Adaptive cards
ms.localizationpriority: medium Last updated : 12/14/2022 # Sequential Workflows
platform Up To Date Views https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/task-modules-and-cards/cards/Universal-actions-for-adaptive-cards/Up-To-Date-Views.md
description: In this module, learn about up to date cards views using Universal
ms.localizationpriority: medium Last updated : 12/14/2022 # Up to date cards
platform User Specific Views https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/task-modules-and-cards/cards/Universal-actions-for-adaptive-cards/User-Specific-Views.md
description: In this module, learn about User Specific Views using Universal Act
ms.localizationpriority: medium Last updated : 12/14/2022 # User Specific Views
platform Work With Universal Actions For Adaptive Cards https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/task-modules-and-cards/cards/Universal-actions-for-adaptive-cards/Work-with-Universal-Actions-for-Adaptive-Cards.md
Title: Work with Universal Actions for Adaptive Cards
description: Learn to work with the Universal Actions for Adaptive Cards, including Schema for UniversalActions for Adaptive cards, Refresh model, and backward compatibility ms.localizationpriority: medium Last updated : 12/20/2022 # Work with Universal Actions for Adaptive Cards
platform Authentication Flow In Universal Action For Adaptive Cards https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/task-modules-and-cards/cards/Universal-actions-for-adaptive-cards/authentication-flow-in-universal-action-for-adaptive-cards.md
description: In this module, learn how to add third party authentication to your
ms.localizationpriority: medium Last updated : 01/02/2023 # Add third party authentication to Adaptive Cards Universal Actions
platform Enable Sso For Your Adaptive Cards Universal Action https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/task-modules-and-cards/cards/Universal-actions-for-adaptive-cards/enable-sso-for-your-adaptive-cards-universal-action.md
description: Learn about Single sign-on (SSO) authentication in Teams and how to
ms.localizationpriority: medium Last updated : 01/24/2023 # Enable SSO for Adaptive Cards Universal Actions in your bot
platform Sso Adaptive Cards Universal Action https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/task-modules-and-cards/cards/Universal-actions-for-adaptive-cards/sso-adaptive-cards-universal-action.md
description: In this module, learn about how to enable SSO for your Adaptive Car
ms.localizationpriority: medium Last updated : 02/06/2023 # Add code to enable SSO for Adaptive Cards Universal Actions
platform Cards Actions https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/task-modules-and-cards/cards/cards-actions.md
Title: Add card actions in a bot
description: In this module, learn what are card actions in Microsoft Teams, action types and how to use them in your bots ms.localizationpriority: medium Last updated : 05/04/2023 # Card actions
platform Cards Reference https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/task-modules-and-cards/cards/cards-reference.md
Title: Types of cards
description: In this module, learn what are cards and card actions available to bots in Teams and create a hero, thumbnail and adaptive cards. ms.localizationpriority: high Last updated : 06/13/2023 # Types of cards
platform Design Effective Cards https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/task-modules-and-cards/cards/design-effective-cards.md
Title: Designing Adaptive Cards for your app
description: In this module, learn how to design Adaptive Cards for your Teams app and get the Microsoft Teams UI Kit. ms.localizationpriority: high Last updated : 04/25/2023 # Designing Adaptive Cards for your Microsoft Teams app
platform Dynamic Search https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/task-modules-and-cards/cards/dynamic-search.md
description: In this module, learn what is typeahead search in adaptive cards wi
ms.localizationpriority: medium Last updated : 05/25/2023 # Typeahead search in Adaptive Cards
platform People Picker https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/task-modules-and-cards/cards/people-picker.md
localization_priority: Medium
Last updated : 01/19/2023 # People Picker in Adaptive Cards
platform Design Teams Task Modules https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/task-modules-and-cards/task-modules/design-teams-task-modules.md
description: In this module, learn how to design task modules for your Teams apps and get the Microsoft Teams UI Kit. ms.localizationpriority: high Last updated : 05/25/2023 # Designing task modules for your Microsoft Teams app
platform Invoking Task Modules https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/task-modules-and-cards/task-modules/invoking-task-modules.md
description: Learn about invoking and dismissing task modules, task info object,
ms.localizationpriority: medium Last updated : 01/29/2023 # Invoke and dismiss task modules
platform Task Modules Bots https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/task-modules-and-cards/task-modules/task-modules-bots.md
Title: Use Task Modules in Microsoft Teams bots
description: Learn how to use task modules with Microsoft Teams bots, including Bot Framework cards, Adaptive cards, and deep links. ms.localizationpriority: medium Last updated : 01/31/2023 # Use task modules from bots
platform Task Modules Tabs https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/task-modules-and-cards/task-modules/task-modules-tabs.md
Title: Use Task Modules in Microsoft Teams tabs
description: Learn how to invoke task modules from Teams tabs and submitting its result using the Microsoft Teams JavaScript client library (TeamsJS). It includes code samples. ms.localizationpriority: medium Last updated : 02/22/2023 # Use task modules in tabs
platform What Are Cards https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/task-modules-and-cards/what-are-cards.md
Title: Cards
description: In this module, learn what are cards and how they're used in bots, connectors, and message extensions. ms.localizationpriority: high Last updated : 01/08/2023 # Cards
platform What Are Task Modules https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/task-modules-and-cards/what-are-task-modules.md
description: In this module, learn how to add modal pop-up experiences to collec
ms.localizationpriority: medium Last updated : 12/16/2022 # Task modules
platform Teams Toolkit Tutorial V4 https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/toolkit/toolkit-v4/teams-toolkit-tutorial-v4.md
Title: Teams toolkit tutorial v4
description: This tutorial helps you to select the app that you want to build and lists the associated guides. ms.localizationpriority: medium Last updated : 05/16/2023 # Teams app tutorials and code samples v4