
Announcements
I've come across numerous posts and guides on this, but nothing seems to work. I have 2 flows setup. One that is an instant flow that posts an adaptive card in a channel and the other that uses the "When Someone Responds to an adaptive card" trigger to capture the response from the previous flow and then post a message. For now, I'm just using a very simple card since main production use card didn't work. This simple card doesn't work either. The initial card posts in the channel, I fill in the inputs and hit submit, but the "response" flow never triggers. Both flows are setup in my default environment.
Screen shots of the flows:
JSON from Card.
{
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.3",
"body": [
{
"type": "TextBlock",
"text": "Add a task",
"weight": "Bolder",
"size": "Medium"
},
{
"type": "TextBlock",
"text": "Title",
"wrap": true
},
{
"type": "Input.Text",
"placeholder": "Enter a task name",
"spacing": "None",
"id": "taskTitle"
},
{
"text": "Due date",
"type": "TextBlock"
},
{
"type": "Input.Date",
"spacing": "None",
"id": "taskDueDate"
}
],
"actions": [
{
"type": "Action.Submit",
"title": "Submit"
}
]
}
Did you get this working?
I am having the same issue. My second flow works when selecting to Test the flow, but not when the complete process is actually done.