Hello,
I have a flow with a "Post adaptive card and wait for response" Action and then an HTTP Action.
On the Post Adaptive card I have an Input.ChoiceSet element as shown below:
{
"type": "AdaptiveCard",
"body": [
{
"type": "Input.ChoiceSet",
"id": "decision",
"choices": [
{
"title": "Approve",
"value": "Approve"
},
{
"title": "Deny",
"value": "Deny"
}
],
"placeholder": "Decision"
}
],
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.5",
"actions": [
{
"type": "Action.Submit",
"title": "Submit"
}
]
}
My goal is to send the value of the selected item above on the body of the HTTP Request below (on the DECISION JSON element)... I tried different ways but I am not able to do it... I am new at this:
Could you please help.
thanks!