{
"type": "Container",
"separator": true,
"items": [
{
"type": "TextBlock",
"size": "Large",
"weight": "Bolder",
"color": "Accent",
"text": "Project Links"
},
{
"type": "TextBlock",
"spacing": "Small",
"size": "Small",
"text": "Project Links Dynamic Multiple",
"wrap": true
}
]
},This is an example chunk of an adaptive card I am building. For the second text block, I want to be able to split a Forms response (already have that part) and do a for-each where a new text block using the parameters of the last text box above and the output of the split in the text field.
I'm trying to return an Adaptive Card to Teams using objects instead of strings since supplying a string of the JSON returned this at the final action to submit the card to Teams:
"error": {
"code": "MissingOrInvalidBotAdaptiveCardRequest",
"message": "The specified Teams flowbot adaptive card request is missing or invalid."
}Either I'm not submitting the data properly using Flow, or something is not right on the Teams side. Thank you!