Greetings,
I'm working a flow that at a certain point will hopefully send an adaptive card to a Teams Channel requesting user input. I want the flow to wait until receiving a response before continuing. I have found a connector that says it's for that: "Post adaptive card and wait for a response". It does NOT say deprecated on Microsoft's site, at least not where I'm looking.

Microsoft has deprecated a lot of this type of Power Automate to Teams connectors. I hope not this one.
By replacing the message text I had with the adaptive card script I have gotten it such that I can seemingly submit a card to Teams but it says it cannot be shown. This is the card:

Via this Script:
{
"type": "AdaptiveCard",
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.6",
"body": [
{
"type": "TextBlock",
"size": "Medium",
"weight": "Bolder",
"text": "${title}"
},
{
"placeholder": "Which Report to Run?",
"$data": "${$root['properties[0]']['key']}",
"type": "Input.ChoiceSet",
"id": "ReportType",
"choices": [
{
"title": "Run Analytical Development Report",
"value": "ADR"
},
{
"title": "Run Analytical Method Report",
"value": "AMR"
},
{
"title": "Run Both Reports",
"value": "Run AMR and ADR"
}
]
},
{
"type": "Input.Text",
"placeholder": "Placeholder text",
"isVisible": false,
"$data": "${$root['properties[0]']['value']}",
"inlineAction": {
"type": "Action.Submit"
}
},
{
"type": "ActionSet",
"actions": [
{
"type": "Action.Submit",
"title": "Submit"
}
]
}
]
}
Does anyone have a way to make this connector, or another connector doing the same thing, work? I've tried setting it for different versions of Adaptive card. I know I've tried 1.6, 1.4, 1.3. I haven't tried them all yet.
Where am I going wrong? Any assistance would be greatly appreciated.
Oh by the way, I wrote this script myself via copy/modify. I didn't use the drag and drop scenario. Maybe I'll try that as well. It might change some used commands. I know I saw somewhere on my digging for an answer that once all the platforms had been upgraded they would stop using textblock, but I don't recall the newer command in it's stead.
My thanks in advance,
McGeeks1