Skip to main content

Notifications

Copilot Studio - Topic Creation & Management
Unanswered

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

(0) ShareShare
ReportReport
Posted on by 19
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?
Categories:
  • SaiRT14 Profile Picture
    SaiRT14 1,926 on at
    Store selection from Adaptive card Action.Submit instead of displaying it
    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

Microsoft Kickstarter Events…

Register for Microsoft Kickstarter Events…

Announcing Our 2025 Season 1 Super Users!

A new season of Super Users has arrived, and we are so grateful for the daily…

Announcing Forum Attachment Improvements!

We're excited to announce that attachments for replies in forums and improved…

Leaderboard

#1
WarrenBelz Profile Picture

WarrenBelz 145,343

#2
RandyHayes Profile Picture

RandyHayes 76,287

#3
Pstork1 Profile Picture

Pstork1 64,703

Leaderboard

Featured topics