I would like to get a response of the user when he clicks on the adaptive cards in power automate
Below are the power tag config
{ "$schema": "http://adaptivecards.io/schemas/adaptive-card.json", "type": "AdaptiveCard", "version": "1.2", "body": [ { "type": "TextBlock", "text": "Shift Handover Notification", "weight": "Bolder", "size": "Medium" }, { "type": "TextBlock", "text": "Please confirm who is taking over the shift by clicking an emoji." } ], "actions": [ { "type": "Action.Submit", "title": "👍 I'm Taking Over", "data": { "action": "takeOver", "user": "${userEmail}" // Dynamically populated with the user's email } }, { "type": "Action.Submit", "title": "👎 Not Taking Over", "data": { "action": "notTakeOver" } } ] }