Hello,
I have used the MS Teams Action to Post an Adaptive Card. I used the https://adaptivecards.io/designer/ to create my JSON Payload (see below). The Adaptive card is displayed in MS Teams and when I select one of the actions, the card is updated as expected.
When I add a subsequent step in the flow, the variables received via the Output of the adaptive card are not available in the Dynamic Content list.
Any help or suggestions is appreciated.
Thank you in advance.
Kevin Clarke
Adaptive Card

Outputs

JSON Payload
{
"type": "AdaptiveCard",
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.2",
"body": [
{
"type": "ColumnSet",
"columns": [
{
"type": "Column",
"width": 2,
"items": [
{
"type": "TextBlock",
"text": "Time-b0t 🤖⏱",
"weight": "Bolder",
"id": "Title",
"size": "Large"
},
{
"type": "TextBlock",
"text": "Please select all items you worked on in the last 30 minutes. Your time will split evenly between each you select. ",
"isSubtle": true,
"wrap": true,
"id": "acInstructions",
"size": "Large"
}
]
}
]
},
{
"type": "Input.ChoiceSet",
"placeholder": "Placeholder text",
"choices": [
{
"title": "TASK001 - IT Governance",
"value": "TASK001"
},
{
"title": "TASK002 - Portfolio Governance",
"value": "TASK002"
},
{
"title": "TASK003 - Out of office",
"value": "TASK003"
}
],
"style": "expanded",
"id": "BT3TimeLogged",
"isMultiSelect": true
}
],
"actions": [
{
"type": "Action.Submit",
"title": "Submit",
"data": {
"x": "submit"
},
"id": "1"
},
{
"type": "Action.Submit",
"title": "Snooze",
"data": {
"x": "snooze"
},
"id": "2"
},
{
"type": "Action.Submit",
"title": "Set Out-Of-Office",
"data": {
"x": "ooo"
},
"id": "3"
}
]
}