Mentions
2 TopicsIncoming Webhook to @mention a Bot
We have some messages that are arriving in Teams channels via an incoming webhook. We'd like to @mention a bot that is also in the channel so it can see the message. I've found some documentation on mentioning users via a Webhook but it doesn't seem to work for bots that are in the channel (I've tried both the Client ID and Object ID in Entra for the bot). Does this work? The documentation that I've been looking at is here: https://learn.microsoft.com/en-us/microsoftteams/platform/task-modules-and-cards/cards/cards-format?tabs=adaptive-md%2Cdesktop%2Cconnector-html#user-mention-in-incoming-webhook-with-adaptive-cards Thank you!1.9KViews0likes1CommentSending a Teams Message from Power Automate with Mention is failing
Hi, we are using a Power Automate Flow to send Teams Messages. This Flow is activated from a http call. But we are getting constant errors "Message mention text needs to be specified." This is the json for the adaptive card: { "contentType": "application/vnd.microsoft.card.adaptive", "content": { "type": "AdaptiveCard", "body": [ { "type": "TextBlock", "text": "Hi <at>John</at>" } ], "$schema": "https://adaptivecards.io/schemas/adaptive-card.json", "version": "1.4", "msteams": { "entities": [ { "type": "mention", "text": "<at>John</at>", "mentioned": { "id": "{Office365 User GUID}", "name": "John Doe" } } ] } } } Any Ideas how to solve this? for the User Id i tried my email and also the guid from the Graph Api Explorer...Solved5.4KViews0likes10Comments