Hi,
I'm trying to make a flow that will trigger when a form is submitted. It will then take information from the form and then create an Adaptive Card in Teams and post it to a channel via the Flow Bot.
When I paste my Card's code into the online card websites it box shows up and looks like it's OK. However, when the flow runs, it gives me the error that the request is missing or invalid.
Here's the flow:
And here's the Card code. I've never made one of these before so it anyone sees an obvious problem, please let me know.
{ "$schema": "https://adaptivecards.io/schemas/adaptive-card.json", "type": "AdaptiveCard", "version": "1.0", "body": [ { "type": "ColumnSet", "columns": [ { "width": "stretch", "items": [ { "type": "TextBlock", "text": "ACED IT" } ] } ] }, { "type": "ColumnSet", "spacing": "large", "separator": true, "columns": [ { "width": "stretch", "items": [ { "type": "TextBlock", "text": "**@{body('Get_response_details')?['FieldCodeHere']} got an Aced It!**" }, { "type": "TextBlock", "spacing": "small", "isSubtle": true, "wrap": true, "text": "@{body('Get_response_details')?['FieldCodeHere']}" }, { "type": "TextBlock", "spacing": "none", "isSubtle": true, "wrap": true, "text": "From: @{body('Get_response_details')?['FieldCodeHere']}" } ] } ] } ] }