
Announcements
In your flow, add the action Microsoft Teams → “Post an adaptive card to a user and wait for a response”.
Target the user (UPN or display name).
Paste a simple Adaptive Card like this (asks the question and captures text):
{
"type": "AdaptiveCard",
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.4",
"body": [
{ "type": "TextBlock", "text": "I have a question:", "weight": "Bolder", "size": "Medium" },
{ "type": "TextBlock", "text": "<<YOUR QUESTION HERE>>", "wrap": true },
{ "type": "Input.Text", "id": "response", "isMultiline": true, "placeholder": "Type your answer here..." }
],
"actions": [
{ "type": "Action.Submit", "title": "Send" }
]
}
After this action, the value is available via the dynamic content token response.
Optionally, add a Parse JSON step with schema:
{
"type": "object",
"properties": {
"response": { "type": "string" }
}
}
You can set a timeout