Service | Microsoft Docs article | Related commit history on GitHub | Change details |
---|---|---|---|
platform | Choose What Suits You | https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/get-started/choose-what-suits-you.md | Title: Choose what suits you -description: In this module, learn more about the tools and SDKs available for you to build a Microsoft Teams app +description: Learn more about the available tools and SDKs to build a Microsoft Teams app based on the app capabilities, AI capability, UI components, and languages. ms.localizationpriority: high Last updated 06/07/2023 |
platform | Glossary | https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/get-started/glossary.md | Title: Teams Developer Documentation Glossary -description: Learn about the common terms, meanings, and definitions used in Microsoft Teams developer documentation. +description: Learn about the glossary such as common terms, meanings, and definitions used in Microsoft Teams developer documentation. ms.localizationpriority: high Last updated 06/12/2023 |
platform | Teams Toolkit Tutorial | https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/get-started/teams-toolkit-tutorial.md | Title: Teams toolkit tutorial -description: This tutorial helps you to select the app that you want to build. +description: Learn to build Teams app with different capabilities using the tutorials and code samples based on languages or frameworks and prepare your development environment. ms.localizationpriority: medium Last updated 06/07/2023 |
platform | Teams App Permissions | https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/graph-api/App-permissions/Teams-app-permissions.md | Title: Manage Teams app permissions -description: In this module, learn how Teams apps are managed in different places based on the feature. +description: Learn how Teams apps are managed in Microsoft Entra ID and resource-specific consent (RSC) based on the feature and capability wise management. ms.localizationpriority: medium |
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 | Title: Import External Platform Messages -description: Describes how to use Microsoft Graph to import messages from an external platform to Teams. +description: Learn how to use Microsoft Graph to import messages such as message history and data from an third-party platform to Teams. ms.localizationpriority: high |
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 +description: Learn about the Microsoft Graph APIs to fetch meeting transcripts based on the user ID of the meeting organizer and meeting ID. ms.localizationpriority: high Last updated 08/03/2022 WEBVTT ``` </details>- |
platform | Fetch Id | https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/graph-api/meeting-transcripts/fetch-id.md | Title: Get Meeting ID & Organizer ID -description: Describes the process of Obtain meeting ID and organizer ID for fetching meeting transcripts and recordings +description: Learn about the process to obtain meeting ID and organizer ID for fetching meeting transcripts and recordings using Microsoft Graph APIs. ms.localizationpriority: high Last updated 01/05/2023 |
platform | Resource Specific Consent | https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/graph-api/rsc/resource-specific-consent.md | Title: Resource-specific Consent for Apps -description: In this article, learn about resource-specific consent (RSC) permissions, types of RSC and supported RSC permissions. +description: Learn about resource-specific consent (RSC) permissions, types of RSC and supported RSC permissions, and how to grant RSC permissions to an app. ms.localizationpriority: medium Last updated 03/20/2023 |
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 | Title: Test Resource-specific Consent for Chat -description: In this module, learn how to test resource-specific consent for a chat in Teams using Postman with a sample JSON file. +description: Learn how to test resource-specific consent (RSC) for a chat in Microsoft Teams using Postman collection with a sample JSON file. ms.localizationpriority: medium |
platform | Test Resource Specific Consent | https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/graph-api/rsc/test-resource-specific-consent.md | Title: Test RSC Permissions Using Postman -description: Details testing resource-specific consent in Teams using Postman with Code Samples +description: Learn to test and revoke resource-specific consent (RSC) permission to a team and chat in Teams using Postman with code samples. ms.localizationpriority: medium |
platform | Define Action Command | https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/messaging-extensions/how-to/action-commands/define-action-command.md | Before creating the action command, you must decide the following factors: 1. [How is the dialog (referred as task module in TeamsJS v1.x) created?](#select-how-to-create-your-dialog) 1. [Is the final message or card sent to the channel from a bot, or is the message or card inserted into the compose message area for the user to submit?](#select-how-the-final-message-is-sent) -See the following video to learn how to define message extension action commands: -<br> -> [!VIDEO https://www.microsoft.com/en-us/videoplayer/embed/RE4OANG] -<br> - ## Select action command invoke locations First, you must decide the location from where your action command must be invoked. When you specify the `context` property in your app manifest (previously called Teams app manifest), your command can be invoked from one or more of the following locations: |
platform | Manifest Schema Dev Preview | https://github.com/MicrosoftDocs/msteams-docs/commits/main/msteams-platform/resources/schema/manifest-schema-dev-preview.md | Each command item is an object with the following structure: |||||| |`id`|String|64 characters|✔️|The ID for the command.| |`type`|String|64 characters||Type of the command. One of `query` or `action`. Default: `query`|-|`samplePrompts`|array|5 |No|Property used by Copilot to display prompts supported by the plugin to the user.| +|`samplePrompts`|array|5 |No|Property used by Copilot to display prompts supported by the plugin to the user. For Copilot scenarios, this property is required in order to pass app validation for store submission. | |`samplePrompts.text`|string|128 characters|✔️|Content of the sample prompt.| |`apiResponseRenderingTemplateFile`|String|2048 characters||A relative file path for api [response rendering template](https://developer.microsoft.com/json-schemas/teams/vDevPreview/MicrosoftTeams.ResponseRenderingTemplate.schema.json) file used to format the JSON response from developer’s API to Adaptive Card response.| |`context`|Array of Strings|3 characters||Defines where the message extension can be invoked from. Any combination of `compose`, `commandBox`, `message`. <br>Default values: `compose, commandBox`| |