cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Nedko_Chulev
New Member

Channel/Teams mention in Adaptive Cards

I've set up a MS Flow Bot to send an Adaptive Card to a Teams channel. However, I've only managed to get an @mention work with singular persons and I would like to mention the entire channel or team.

 

I'd be fine with a solution that adds a comment to the Adaptive Card post with the team/channel mention, if that exists.

 

I'm feeling kind of lost after several hours of experimenting.

19 REPLIES 19
ChristianAbata
Most Valuable Professional
Most Valuable Professional

hi @Nedko_Chulev  please see this post maeby could help you

 

https://powerusers.microsoft.com/t5/Building-Flows/Ms-Teams-Mentions-in-adaptive-cards/td-p/520520



Did I answer your question? Please consider to Mark
my post as a solution! to guide others :winking_face:

Proud to be a Flownaut!


If you want you can follow me:
Youtube: Christian Abata
Facebook: Power Automate LA
Website Tutorials: Christian Abata

Thank you for your answer, @ChristianAbata !

 

Unfortunately the question you're referring to only describes a way to mention individuals. Granted, I used exactly the method described in that post and it works flawlessly for individuals.

 

Maybe I'm misunderstanding something but using the same method hasn't been working for me when I try to mention an entire team or a channel. Which ID am I supposed to use in place of the 8:orgid of a person, when trying to reference a team/channel?

 

Cheers

I am still trying to figure this out as well. Have you had any luck? I can only mention individuals right now.

Nope, unfortunately, I couldn't find any official solution.

 

The closest I've gotten to a solution was this post: http://www.expiscornovus.com/2019/05/29/mention-a-channel-with-flow/

 

Unfortunately I do not have the rights in my company to execute it. But maybe it will help you.

fishmangal011
Helper I
Helper I

Hi all,

 

Any progress on this?  I’m trying to send an adaptive card to a team group (@general). 

please help?? 

Anonymous
Not applicable

I figured out how to do it, granted I'm doing it through AWS Lambda as SNS drives the notifications for CodeCommit Pull request updates, but it might still work for your purposes.

 

I set up an Incoming Webhook to my team's channel that is specifically used for developers and am using this JSON payload in the POST request:

 

{
        "type": "message",
        "attachments": [
            {
                "contentType": "application/vnd.microsoft.card.adaptive",
                "content": {
                    "type": "AdaptiveCard",
                    "body": [
                        {
                            "type": "TextBlock",
                            "text": "Hi <at>General</at>"
                        }
                    ],
                    "$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
                    "version": "1.0",
                    "msteams": {
                        "entities": [
                            {
                                "type": "mention",
                                "text": "<at>General</at>",
                                "mentioned": {
                                    "id": "CHANNEL_ID",
                                    "conversationIdentityType": "channel",
                                    "conversationIdentityType@odata.type": "#Microsoft.Teams.GraphSvc.conversationIdentityType",
                                }
                            }
                        ]
                    }
                }
            }]
    }

 

 

The CHANNEL_ID is the URL decoded ID of the channel. I found this by going to the channel you want to send the notifications to in MS Teams, click on the three dots in the upper right corner, and select "Get link to channel". The way the URL is formatted is:

 

https://teams.microsoft.com/l/channel/CHANNEL_ID/Notifications?groupId=UUID&tenantId=UUID

and the CHANNEL_ID will be in the format of "<some numbers>:<some more numbers>@thread.tacv2". Others have a similar format, but the ending is "@thread.skype".

 

Hope this helps! It sure as hell helped me.

How would I go about mentioning the Team?

awesome, thank you! I have not tried this yet, but have been searching for this answer all day and tried many other failed approaches and this look like a winner. I would like to do this same type of notification using the "tag" and I am guessing it is defined somewhere, but where are the msteams/entities object types defined?

I have been struggling to find them. I tried looking in the adaptive card schema but that was a dead end? So far, I have just been working off of examples and trying them out, but you seem to have found the holy grail.

Anonymous
Not applicable

I mean, if you mention General in a Teams channel, it's basically like mentioning the Team.

Anonymous
Not applicable

I've tried exactly the same, also same code as above, but still no channel-mention, just getting channel name as flat text.

 

CHANNEL_ID is "19:XXXXXXXXXXXXXXXXXXXXX@thread.tacv2"

Above code as connectorCard:

 

$ curl -H 'Content-type: application/json' -d "${connectorCard}" ${WEBHOOK_URL} 

 

 

Change the

 

"team" instead of "channel" 

Anonymous
Not applicable

Thx for your response!

I've tried with ("text": "Hi <at>CHANNEL_DISPLAYNAME</at>")

"conversationIdentityType": "team"

and also with ("text": "Hi <at>TEAM_DISPLAYNAME</at>")

                           {
                                "type": "mention",
                                "text": "<at>TEAM_DISPLAYNAME</at>",
                                "mentioned": {
                                    "id": "TEAM_ID",
                                    "conversationIdentityType": "team",
                                    "conversationIdentityType@odata.type": "#Microsoft.Teams.GraphSvc.conversationIdentityType",
                                }

both are not working

Appears this cannot be done through adaptive cards but I was able to do it in microsoft flow using the graph api

Great youtube below of Microsoft MVP showing what happens when you try to do this in an adaptive card. 

Basically it doesn't work as you would expect. 

https://www.youtube.com/watch?v=tKldDRS7csM

The only way I have accomplished this is by using the graph api

 

{
"subject":"@{body('Get_item')?['Status']?['Value']}: @{triggerBody()?['Title']}",
"importance":"normal",
"body": {
"contentType": "html",
"content": "<at id=\"0\">General</at><p>@{body('Convert_time_zone')}- @{body('Get_item')?['Status']?['Value']}<br>\n<strong>What's &nbsp;Happening?</strong>
<br>\n@{variables('Whatshappening')}<br>\n<br>\n<strong>What are the impacts?</strong>
<br>\n@{variables('Whataretheimpacts')}<br>\n<br>\n<strong>Where do I go for help?</strong>
<br>\nIf you have questions related to this communication, please leave a
comment below or submit a ticket to the <a
href=\"someurl\">T&amp;ES Data Office Jira Service Desk </a>&nbsp;<br>\n<br>\n@{variables('Additional Info')}</p>"
},
"mentions": [
{
"id": 0,
"mentionText": "General",
"mentioned": {
"conversation": {
"id": "@{outputs('ChannelId')}",
"displayName": "Data Alert",
"@odata.type": "microsoft.graph.teamworkConversationIdentity",
"conversationIdentityType": "channel"
}
}
}
]
}:

 

 

Anonymous
Not applicable

Thx, great youtube indeed!

Via the Ms Graph Explorer I get every time new "Missing Scope permissions" errors.

Via Power Automate, channel and team mention works fine under my user name, but not via a bot.

koetsia_1-1657893221831.png

koetsia_2-1657893232987.png

koetsia_3-1657893242079.png

 

 

Anonymous
Not applicable

Didn't work for me. It still posts the channel (e.g. @General) as plain text. In fact, this post from MSFT in April 2022 states that @channel mention is not ready yet, so I have no idea how you got it to work:

 

Are Channel Mentions supported via Incoming Webhook Connectors? - Microsoft Q&A

 

BTW, for anyone else wanting to get the Channel_ID, you'll need to take the URL and decode it here:

https://meyerweb.com/eric/tools/dencoder/

 

 

 
 
 
 
 
 
Anonymous
Not applicable

@Anonymous it looks like the JSON is not complete (there is an extra comma). I tried all kinds of iterations.

If anyone gets this working, please post your sample JSON.

This solution via send an http request worked fine for me. Thanks a lot!!

jcastelo
Regular Visitor

{
"subject":"@{body('Get_item')?['Status']?['Value']}: @{triggerBody()?['Title']}",
"importance":"normal",
"body": {
"contentType": "html",
"content": "<at id=\"0\">General</at><p>@{body('Convert_time_zone')}- @{body('Get_item')?['Status']?['Value']}<br>\n<strong>What's &nbsp;Happening?</strong>
<br>\n@{variables('Whatshappening')}<br>\n<br>\n<strong>What are the impacts?</strong>
<br>\n@{variables('Whataretheimpacts')}<br>\n<br>\n<strong>Where do I go for help?</strong>
<br>\nIf you have questions related to this communication, please leave a
comment below or submit a ticket to the <a
href=\"https://forge.lmig.com/issues/servicedesk/customer/portal/1759\">T&amp;ES Data Office Jira Service Desk </a>&nbsp;<br>\n<br>\n@{variables('Additional Info')}</p>"
},
"mentions": [
{
"id": 0,
"mentionText": "General",
"mentioned": {
"conversation": {
"id": "@{outputs('ChannelId')}",
"displayName": "General",
"@odata.type": "microsoft.graph.teamworkConversationIdentity",
"conversationIdentityType": "channel"
}
}
}
]
}:

CamFromStar
New Member

Apologies for necroing an old thread, but this is still the top one that pulls through when searching anything related to channel mentions, adaptive cards and incoming webhooks.

 

I have managed to get this to work; slightly modifying the solution by @Anonymous. The only change I made was to the id.  Rather than use the channel id from the "Get link to channel" method.  I have used the last id in the incoming webhook URL.  

 

"msteams":
                        {
                            "entities": [
                                {
                                    "type": "mention",
                                    "text": "<at>General</at>",
                                    "mentioned": {
                                        "id": "12345678-xxxx-yyyy-zzzz-0123456789ab",
                                        "name": "General",
                                        "conversationIdentityType": "channel",
                                        "conversationIdentityType@odata.type": "#Microsoft.Teams.GraphSvc.conversationIdentityType"
                                    }
                                }
                            ]
                        }

 Apologies for the source formatting.  As mentioned earlier, the id can be obtained from the incoming webhook url.  The incoming webhook url should be of the format:

"https://somename.webhook.office.com/webhookb2/<some-id-1>@<tennant-id>/IncomingWebhook/<some-id-2>/<some-id-3">
<some-id-3> is the id you are looking for.

Helpful resources

Announcements

Community Roundup: A Look Back at Our Last 10 Tuesday Tips

As we continue to grow and learn together, it's important to reflect on the valuable insights we've shared. For today's #TuesdayTip, we're excited to take a moment to look back at the last 10 tips we've shared in case you missed any or want to revisit them. Thanks for your incredible support for this series--we're so glad it was able to help so many of you navigate your community experience!   Getting Started in the Community An overview of everything you need to know about navigating the community on one page!  Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Community Ranks and YOU Have you ever wondered how your fellow community members ascend the ranks within our community? We explain everything about ranks and how to achieve points so you can climb up in the rankings! Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Powering Up Your Community Profile Your Community User Profile is how the Community knows you--so it's essential that it works the way you need it to! From changing your username to updating contact information, this Knowledge Base Article is your best resource for powering up your profile. Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Community Blogs--A Great Place to Start There's so much you'll discover in the Community Blogs, and we hope you'll check them out today!  Community Links: ○ Power Apps ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Unlocking Community Achievements and Earning Badges Across the Communities, you'll see badges on users profile that recognize and reward their engagement and contributions. Check out some details on Community badges--and find out more in the detailed link at the end of the article! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio    Blogging in the Community Interested in blogging? Everything you need to know on writing blogs in our four communities! Get started blogging across the Power Platform communities today! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Subscriptions & Notifications We don't want you to miss a thing in the community! Read all about how to subscribe to sections of our forums and how to setup your notifications! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Getting Started with Private Messages & Macros Do you want to enhance your communication in the Community and streamline your interactions? One of the best ways to do this is to ensure you are using Private Messaging--and the ever-handy macros that are available to you as a Community member! Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Community User Groups Learn everything about being part of, starting, or leading a User Group in the Power Platform Community. Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Update Your Community Profile Today! Keep your community profile up to date which is essential for staying connected and engaged with the community. Community Links: ○ Power Apps  ○ Power Automate  ○ Power Pages  ○ Copilot Studio   Thank you for being an integral part of our journey.   Here's to many more Tuesday Tips as we pave the way for a brighter, more connected future! As always, watch the News & Announcements for the next set of tips, coming soon!    

Calling all User Group Leaders and Super Users! Mark Your Calendars for the next Community Ambassador Call on May 9th!

This month's Community Ambassador call is on May 9th at 9a & 3p PDT. Please keep an eye out in your private messages and Teams channels for your invitation. There are lots of exciting updates coming to the Community, and we have some exclusive opportunities to share with you! As always, we'll also review regular updates for User Groups, Super Users, and share general information about what's going on in the Community.     Be sure to register & we hope to see all of you there!

April 2024 Community Newsletter

We're pleased to share the April Community Newsletter, where we highlight the latest news, product releases, upcoming events, and the amazing work of our outstanding Community members.   If you're new to the Community, please make sure to follow the latest News & Announcements and check out the Community on LinkedIn as well! It's the best way to stay up-to-date with all the news from across Microsoft Power Platform and beyond.    COMMUNITY HIGHLIGHTS   Check out the most active community members of the last month! These hardworking members are posting regularly, answering questions, kudos, and providing top solutions in their communities. We are so thankful for each of you--keep up the great work! If you hope to see your name here next month, follow these awesome community members to see what they do!   Power AppsPower AutomateCopilot StudioPower PagesWarrenBelzDeenujialexander2523ragavanrajanLaurensMManishSolankiMattJimisonLucas001AmikcapuanodanilostephenrobertOliverRodriguestimlAndrewJManikandanSFubarmmbr1606VishnuReddy1997theMacResolutionsVishalJhaveriVictorIvanidzejsrandhawahagrua33ikExpiscornovusFGuerrero1PowerAddictgulshankhuranaANBExpiscornovusprathyooSpongYeNived_Nambiardeeksha15795apangelesGochixgrantjenkinsvasu24Mfon   LATEST NEWS   Business Applications Launch Event - On Demand In case you missed the Business Applications Launch Event, you can now catch up on all the announcements and watch the entire event on-demand inside Charles Lamanna's latest cloud blog.   This is your one stop shop for all the latest Copilot features across Power Platform and #Dynamics365, including first-hand looks at how companies such as Lenovo, Sonepar, Ford Motor Company, Omnicom and more are using these new capabilities in transformative ways. Click the image below to watch today!   Power Platform Community Conference 2024 is here! It's time to look forward to the next installment of the Power Platform Community Conference, which takes place this year on 18-20th September 2024 at the MGM Grand in Las Vegas!   Come and be inspired by Microsoft senior thought leaders and the engineers behind the #PowerPlatform, with Charles Lamanna, Sangya Singh, Ryan Cunningham, Kim Manis, Nirav Shah, Omar Aftab and Leon Welicki already confirmed to speak. You'll also be able to learn from industry experts and Microsoft MVPs who are dedicated to bridging the gap between humanity and technology. These include the likes of Lisa Crosbie, Victor Dantas, Kristine Kolodziejski, David Yack, Daniel Christian, Miguel Félix, and Mats Necker, with many more to be announced over the coming weeks.   Click here to watch our brand-new sizzle reel for #PPCC24 or click the image below to find out more about registration. See you in Vegas!       Power Up Program Announces New Video-Based Learning Hear from Principal Program Manager, Dimpi Gandhi, to discover the latest enhancements to the Microsoft #PowerUpProgram. These include a new accelerated video-based curriculum crafted with the expertise of Microsoft MVPs, Rory Neary and Charlie Phipps-Bennett. If you’d like to hear what’s coming next, click the image below to find out more!   UPCOMING EVENTS Microsoft Build - Seattle and Online - 21-23rd May 2024 Taking place on 21-23rd May 2024 both online and in Seattle, this is the perfect event to learn more about low code development, creating copilots, cloud platforms, and so much more to help you unleash the power of AI.   There's a serious wealth of talent speaking across the three days, including the likes of Satya Nadella, Amanda K. Silver, Scott Guthrie, Sarah Bird, Charles Lamanna, Miti J., Kevin Scott, Asha Sharma, Rajesh Jha, Arun Ulag, Clay Wesener, and many more.   And don't worry if you can't make it to Seattle, the event will be online and totally free to join. Click the image below to register for #MSBuild today!   European Collab Summit - Germany - 14-16th May 2024 The clock is counting down to the amazing European Collaboration Summit, which takes place in Germany May 14-16, 2024. #CollabSummit2024 is designed to provide cutting-edge insights and best practices into Power Platform, Microsoft 365, Teams, Viva, and so much more. There's a whole host of experts speakers across the three-day event, including the likes of Vesa Juvonen, Laurie Pottmeyer, Dan Holme, Mark Kashman, Dona Sarkar, Gavin Barron, Emily Mancini, Martina Grom, Ahmad Najjar, Liz Sundet, Nikki Chapple, Sara Fennah, Seb Matthews, Tobias Martin, Zoe Wilson, Fabian Williams, and many more.   Click the image below to find out more about #ECS2024 and register today!     Microsoft 365 & Power Platform Conference - Seattle - 3-7th June If you're looking to turbo boost your Power Platform skills this year, why not take a look at everything TechCon365 has to offer at the Seattle Convention Center on June 3-7, 2024.   This amazing 3-day conference (with 2 optional days of workshops) offers over 130 sessions across multiple tracks, alongside 25 workshops presented by Power Platform, Microsoft 365, Microsoft Teams, Viva, Azure, Copilot and AI experts. There's a great array of speakers, including the likes of Nirav Shah, Naomi Moneypenny, Jason Himmelstein, Heather Cook, Karuana Gatimu, Mark Kashman, Michelle Gilbert, Taiki Y., Kristi K., Nate Chamberlain, Julie Koesmarno, Daniel Glenn, Sarah Haase, Marc Windle, Amit Vasu, Joanne C Klein, Agnes Molnar, and many more.   Click the image below for more #Techcon365 intel and register today!     For more events, click the image below to visit the Microsoft Community Days website.      

Tuesday Tip | Update Your Community Profile Today!

It's time for another TUESDAY TIPS, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.   We're excited to announce that updating your community profile has never been easier! Keeping your profile up to date is essential for staying connected and engaged with the community.   Check out the following Support Articles with these topics: Accessing Your Community ProfileRetrieving Your Profile URLUpdating Your Community Profile Time ZoneChanging Your Community Profile Picture (Avatar)Setting Your Date Display Preferences Click on your community link for more information: Power Apps, Power Automate, Power Pages, Copilot Studio   Thank you for being an active part of our community. Your contributions make a difference! Best Regards, The Community Management Team

Hear what's next for the Power Up Program

Hear from Principal Program Manager, Dimpi Gandhi, to discover the latest enhancements to the Microsoft #PowerUpProgram, including a new accelerated video-based curriculum crafted with the expertise of Microsoft MVPs, Rory Neary and Charlie Phipps-Bennett. If you’d like to hear what’s coming next, click the link below to sign up today! https://aka.ms/PowerUp  

Super User of the Month | Ahmed Salih

We're thrilled to announce that Ahmed Salih is our Super User of the Month for April 2024. Ahmed has been one of our most active Super Users this year--in fact, he kicked off the year in our Community with this great video reminder of why being a Super User has been so important to him!   Ahmed is the Senior Power Platform Architect at Saint Jude's Children's Research Hospital in Memphis. He's been a Super User for two seasons and is also a Microsoft MVP! He's celebrating his 3rd year being active in the Community--and he's received more than 500 kudos while authoring nearly 300 solutions. Ahmed's contributions to the Super User in Training program has been invaluable, with his most recent session with SUIT highlighting an incredible amount of best practices and tips that have helped him achieve his success.   Ahmed's infectious enthusiasm and boundless energy are a key reason why so many Community members appreciate how he brings his personality--and expertise--to every interaction. With all the solutions he provides, his willingness to help the Community learn more about Power Platform, and his sheer joy in life, we are pleased to celebrate Ahmed and all his contributions! You can find him in the Community and on LinkedIn. Congratulations, Ahmed--thank you for being a SUPER user!

Users online (6,832)