अपना फ़ीडबैक साझा करें:
हम Microsoft Teams डेवलपर दस्तावेज़ों पर आपकी प्रतिक्रिया चाहते हैं। कृपया हमारे छोटे तीन-प्रश्न सर्वेक्षण का उत्तर दें।सर्वेक्षण करें
यह ब्राउज़र अब समर्थित नहीं है.
नवीनतम सुविधाओं, सुरक्षा अपडेट और तकनीकी सहायता का लाभ लेने के लिए Microsoft Edge में अपग्रेड करें.
The in-meeting notification is used to engage participants and collect information or feedback during the meeting. Use an in-meeting notification payload to trigger an in-meeting notification. As part of the notification payload request, include the URL where the content to be shown is hosted.
An external resource URL is used to display in-meeting notification. You can use the submitTask method to submit data in a meeting chat.
The following image shows an in-meeting notification in the Teams desktop client:
The following image shows an in-meeting notification in the Teams mobile client:
You can also add the Teams display picture and people card of the user to in-meeting notification based on onBehalfOf token with user MRI and display name passed in payload. Following is an example payload:
JSON
{
"type": "message",
"text": "John Phillips assigned you a weekly todo",
"summary": "Don't forget to meet with Marketing next week",
"channelData": {
onBehalfOf: [
{
itemId: 0,
mentionType: 'person',
mri: context.activity.from.id,
displayname: context.activity.from.name
}
],
"notification": {
"alertInMeeting": true,
"externalResourceUrl": "https://teams.microsoft.com/l/bubble/APP_ID?url=<url>&height=<height>&width=<width>&title=<title>&completionBotId=BOT_APP_ID"
}
},
"replyToId": "1493070356924"
}
Feature compatibility by user types
The following table provides the user types and lists the features that each user can access in meetings:
User type
Scheduled meeting or Instant calendar meeting
One-on-one call
Group call
Scheduled channel meeting
In-tenant
Available
Available
Available
Available
Guest
Available
Available
Available
Available
Federated or External
Available
Not available
Not available
Available
Anonymous
Available
Not available
Not available
Not available
Targeted in-meeting notification
Targeted in-meeting notification allows apps to send notifications to specific participants on a meeting stage. The notifications are private and are sent only to specific or targeted participants. Targeted in-meeting notification helps to enhance meeting experience and develop user engagement activities in Teams meetings.
नोट
Targeted in-meeting notification is supported for scheduled meetings, instant meeting (Meet now), one-on-one calls, and group calls.
In the following image, a meeting notification requesting payment is sent to one of the participants in the meeting. The meeting notification is only visible to the targeted participant:
Enable app manifest settings for targeted in-meeting notification
To send targeted in-meeting notifications, you must configure the authorization property and the name and type properties under the resourceSpecific field in the app manifest as follows:
You can only send a targeted in-meeting notification to 50 meeting participants in a single API call. If you want to send a targeted in-meeting notification to more than 50 participants, you must call the targetedMeetingNotification API again.
Targeted in-meeting notification can be triggered by user action.
After you've built in-meeting notification for your app, you can use the targetedMeetingNotification API to enable app icon badging for your meeting app. This helps meeting participants to get a notification whenever there's new activity in the app. For more information, see enable app icon badging for your Teams app.
Code sample
Sample name
Description
.NET
Node.js
Manifest
In-meeting notification
Demonstrates how to implement in-meeting notification using bot.
इस सामग्री का स्रोत GitHub पर पाया जा सकता है, जहाँ आप समस्याएँ बना और समीक्षा भी कर सकते हैं और अनुरोध खींच सकते हैं. अधिक जानकारी के लिए, हमारे योगदानकर्ता गाइड देखें.
Platform Docs प्रतिक्रिया
Platform Docs एक ओपन सोर्स प्रोजेक्ट है. प्रतिक्रिया प्रदान करने के लिए लिंक का चयन करें:
A bot, commonly called a chat bot, uses a conversational interface that users can interact with by sending and receiving messages that contain text or interactive cards. Bots are highly flexible and can be used in many ways, such as sending messages proactively, carrying out actions when instructed to, and performing multiple-step workflows. Bots can also be used in many Microsoft Teams contexts, as a personal bot, in a one-to-one or group chat, in Teams channel conversations, or in Teams meeting chats.
Microsoft 365 वातावरण में कुशल और प्रभावी सहयोग और संचार पर ध्यान केंद्रित करने के लिए Microsoft Teams की योजना बनाने, तैनात करने, कॉन्फ़िगर करने और प्रबंधित करने के लिए कौशल प्रदर्शित करें।
Learn to build a tab for a meeting chat, meeting side panel, and meeting stage in Teams meeting. Feature compatibility by user types. Code samples (Node.js, .NET).
Learn how to enable app icon badging for your Microsoft Teams app in meeting, app manifest setting, and its code samples to enable app icon badging (Node.js, .NET).