
Announcements
I'm trying to use logos from my Azure storage to be used to go the next step but copilot studio throws an error saying "unable to parse the output"
Adaptive card:
{
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.5",
"body": [
{
"type": "TextBlock",
"text": "What would you like to do today?",
"wrap": true,
"weight": "Bolder",
"size": "Medium",
"horizontalAlignment": "center"
},
{
"type": "ColumnSet",
"columns": [
{
"type": "Column",
"width": "stretch",
"items": [
{
"type": "Image",
"url": "https://my url 1",
"size": "Medium",
"altText": "Automation Logo",
"selectAction": {
"type": "Action.Submit",
"title": "Automation",
"id": "submitAutomation",
"data": {
"choice": "automation"
}
}
}
],
"horizontalAlignment": "center"
},
{
"type": "Column",
"width": "stretch",
"items": [
{
"type": "Image",
"url": "https://my url 2",
"size": "Medium",
"altText": "Learning",
"selectAction": {
"type": "Action.Submit",
"title": "Learning",
"id": "submitLearning",
"data": {
"choice": "learning"
}
}
}
],
"horizontalAlignment": "center"
}
]
}
]
}I wanted the output of User's choice to be stored in the variable 'choice'
Thanks for your help