My Adaptive card is currently a people picker, however its not showing in the work flow once submitted
- how can I get my Adaptive Card to import data submitted in a Microsoft list or showing the response in the workflow
here is my code
{
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.0",
"body": [
{
"type": "Image",
"url": "@{outputs('Image')?['body/Url']}",
"msTeams": {
"allowExpand": true
}
},
{
"type": "TextBlock",
"text": "New E-Mails in Shared mailbox ",
"id": "Title",
"spacing": "Medium",
"horizontalAlignment": "Center",
"size": "ExtraLarge",
"weight": "Bolder",
"color": "Accent"
},
{
"type": "TextBlock",
"text": "@{body('Convert_time_zone')}",
"id": "acHeaderTagLine",
"separator": true
},
{
"type": "TextBlock",
"text": "Shared Mailbox",
"weight": "Bolder",
"size": "ExtraLarge",
"spacing": "None",
"id": "acHeader"
},
{
"type": "TextBlock",
"text":Test here",
"id": "acInstructions",
"wrap": true
},
{
"type": "TextBlock",
"text": "Please Enter your name",
"id": "acPollQuestion"
},
{
"type": "Input.ChoiceSet",
"isRequired": true,
"errorMessage": "This is required",
"placeholder": "Please Enter your name correctly",
"choices": [],
"choices.data": {
"type": "Data.Query",
"dataset": "graph.microsoft.com/users"
},
"id": "people-picker",
"isMultiSelect": true
}
],
"actions": [
{
"type": "Action.Submit",
"title": "Submit"
}
]
}