
Announcements
Team - I am in the process of sending Personalized adaptive card message to members of a team. I am able to pick the team from "List of group members" option,, But I need to make @mention in the adaptive cards .. Example
Example1: John - Pls complete Your timesheet ASAP
Example2: Venu -Pls complete Your timesheet ASAP
John and Venu are members in the TEAMs and need to be <at> mentioned in the adaptive card. Any link or pointers please
Hi @krishnakumar_R ,
I've made a test for your reference:
{
"type": "AdaptiveCard",
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.4",
"body": [
{
"type": "TextBlock",
"text": "@{outputs('Get_an_@mention_token_for_a_user')?['body/atMention']} - Pls complete Your timesheet ASAP",
"wrap": true
}
]
}
Best Regards,
Bof