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

Notifications

Announcements

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 73
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 2 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

Forum hierarchy changes are complete!

In our never-ending quest to improve we are simplifying the forum hierarchy…

Ajay Kumar Gannamaneni – Community Spotlight

We are honored to recognize Ajay Kumar Gannamaneni as our Community Spotlight for December…

Leaderboard > Copilot Studio

#1
Michael E. Gernaey Profile Picture

Michael E. Gernaey 264 Super User 2025 Season 2

#2
Romain The Low-Code Bearded Bear Profile Picture

Romain The Low-Code... 263 Super User 2025 Season 2

#3
S-Venkadesh Profile Picture

S-Venkadesh 105 Moderator

Last 30 days Overall leaderboard