I'm trying to pass structured data from Power Automate to Copilot Studio and render it in an Adaptive Card. I'm testing with one field (title
) first. The value comes through—I can see it in “ask a question” and “send a message”—but it's not showing in the Adaptive Card.
I’m on a GCC license. Here’s the Adaptive Card JSON I’m using:
{
"$schema": "https://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.5",
"body": [
{
"type": "TextBlock",
"text": "Case Title:",
"weight": "Bolder",
"size": "Medium",
"wrap": true
},
{
"type": "TextBlock",
"text": "${title}",
"wrap": true
}
],
"actions": [
{
"type": "Action.Submit",
"title": "OK",
"data": {
"action": "acknowledge"
}
}
]
}