I'm creating a Microsoft flow to mention a user within an Adaptive card posted by the Flow bot within teams.
This is the action I'm trying to use
This is a simplified version of my JSON to do this
{
"type": "AdaptiveCard",
"body": [
{
"type": "Container",
"items": [
{
"type": "TextBlock",
"size": "Medium",
"weight": "Bolder",
"color": "Attention",
"text": "Hey!"
},
{
"type": "ColumnSet",
"columns": [
{
"type": "Column",
"items": [
{
"type": "TextBlock",
"text": "<at>[email protected]</at>",
}
],
"width": "stretch"
}
]
}
]
},
],
"actions": [
{
"type": "Action.OpenUrl",
"title": "Teams Message",
"url": "-teamsUrl-"
}
],
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.0"
}
Unfortunately this just displays as <at>[email protected]</at>
If I use the same syntax as a message to the teams channel then the user will get mentioned.
Is it possible to mention a user within an adaptive card in this way?