Hello guys,
I Created a workflow, which ends with posting the following adaptive card (similar to this π
{
"type": "AdaptiveCard",
"body": [
{
"type": "TextBlock",
"text": "Some Text Here",
"wrap": true,
"id": "msg_txt"
},
{
"type": "ActionSet",
"actions": [
{
"type": "Action.Submit",
"title": "Close",
"id": "close"
}
]
}
],
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.4"
}
I gave it a Card Type ID "tkt_card"
My target is to trigger another flow once the Adaptive card button "Close" is clicked.
So i went and created another flow with the Trigger "When Someone responds to an adaptive card".
I Pasted the Adaptive Card JSON inside the Inputs Adaptive Card. Inside the Card Type ID I entered "tkt_card".
Next it should post a message in teams saying submitted.
Now the first workflow works smoothly, however the second one isn't even running. Am not sure what's the issue. Any Idea?