I can successfully send an adaptive card from Power Automate to Teams, but I'd like the card to generate an @mention. I have the JSON code for adaptive cards but in order to @mention a user, I need their Teams user ID. How can I determine a user's Teams ID if I am not using a bot? See: Sample Adaptive card with a mention
{
"contentType": "application/vnd.microsoft.card.adaptive",
"content": {
"type": "AdaptiveCard",
"body": [
{
"type": "TextBlock",
"text": "Hi <at>John Doe</at>"
}
],
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.0",
"msteams": {
"entities": [
{
"type": "mention",
"text": "<at>John Doe</at>",
"mentioned": {
"id": "29:123124124124",
"name": "John Doe"
}
}
]
}
}
}