web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Copilot Studio / Store selection from A...
Copilot Studio
Unanswered

Store selection from Adaptive card Action.Submit instead of displaying it

(0) ShareShare
ReportReport
Posted on by 75
I am using Copilot Studio and trying to have a feedback button for user to select whether the bot's response is good or bad. The Adaptive card is version 1.0 in Copilot studio and I'm planning to deploy it to Team. I do not want a response to be triggered when the button is clicked but rather the user's feedback of good or bad to be stored backend for extraction later. How do I configure this in Adaptive Card using formula? I have tried using the data under selectionAction but it will trigger a written response after user selection which I do not want, is there a way to hide this response from being shown visibly?
I have the same question (0)
  • SaiRT14 Profile Picture
    1,990 Super User 2025 Season 1 on at
    Hi
     
    Pls try following Adaptive Card JSON structure as an example. This card includes buttons for "Good" and "Bad" feedback and sends the feedback as data without showing any written response.
    {
        "type": "AdaptiveCard",
        "version": "1.0",
        "body": [
            {
                "type": "TextBlock",
                "text": "How would you rate this response?",
                "weight": "Bolder",
                "wrap": true
            }
        ],
        "actions": [
            {
                "type": "Action.Submit",
                "title": "Good",
                "data": {
                    "feedback": "Good"
                }
            },
            {
                "type": "Action.Submit",
                "title": "Bad",
                "data": {
                    "feedback": "Bad"
                }
            }
        ]
    }
     
    Trigger a flow on the Action.Submit data to store feedback. Store the feedback value in a database or file.
     
    configure a silent response {
        "type": "TextBlock",
        "text": "",
        "isVisible": false
    }
     
     
     

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Users!

Kudos to our 2025 Community Spotlight Honorees

Congratulations to our 2025 community superstars!

Leaderboard > Copilot Studio

#1
Romain The Low-Code Bearded Bear Profile Picture

Romain The Low-Code... 240 Super User 2026 Season 1

#2
Valantis Profile Picture

Valantis 226

#3
Arild Aarnes Profile Picture

Arild Aarnes 73 Super User 2026 Season 1

Last 30 days Overall leaderboard