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 / Copilot Studio: Topic ...
Copilot Studio
Suggested Answer

Copilot Studio: Topic stalls after Adaptive Card submit — next node never triggers

(0) ShareShare
ReportReport
Posted on by

What I'm trying to do
I have a Question node that renders an Adaptive Card with a single Input.ChoiceSet (list of SharePoint sites). The user picks a site and clicks a Continue submit button. After submit, the topic should move to the next node (a Message node that echoes the selection).

What actually happens
The card renders fine and I can select an option. When I click Continue, nothing happens — no error, no next message, no branch taken. The topic appears to hang indefinitely. The output variable I've mapped stays empty.

What I've already checked

  • Input.ChoiceSet id matches the node's Output property name exactly.
  • associatedInputs is set to "auto" on the Submit action.
  • Tried JSON Adaptive Card as well as Formula both are getting stalled.

Questions

  1. Are there known conditions where an Action.Submit on an Adaptive Card fails to advance in Copilot Studio?
  2. Is there a required schema element I might be missing to route the submit back to the topic?
  3. Is there a way to inspect the raw submit payload the runtime receives, to confirm whether it's arriving at all.
Any pointers or working sample topics appreciated.

Formula Card Code:
{
  '$schema': "https://adaptivecards.io/schemas/adaptive-card.json",
  type: "AdaptiveCard",
  version: "1.5",
  body: [
    {
      type: "TextBlock",
      text: "Select a SharePoint Site",
      weight: "Bolder",
      size: "Medium"
    },
    {
      type: "Input.ChoiceSet",
      id: "selectedSite",
      label: "SharePoint Site",
      isRequired: true,
      errorMessage: "Please select a site",
      choices: Topic.UserAvailSites,
      style: "filtered"
    }
  ],
  actions: [
    {
      type: "Action.Submit",
      title: "Continue",
      associatedInputs: "auto",
      data: {
        action: "submitSite"
      },
      style: "positive"
    }
  ]
}
 
I have the same question (0)
  • Suggested answer
    11manish Profile Picture
    3,452 on at
    I would test in this order:
    • Replace Topic.UserAvailSites with two hard-coded choices.
    • Remove the data property from Action.Submit.
    • Verify the Question node output property is exactly selectedSite.
    • Replace the Input.ChoiceSet with an Input.Text to confirm the Question node itself is functioning.
    • Test in both the Copilot Studio Test pane and another supported channel to determine whether the issue is channel-specific.
    If the hard-coded ChoiceSet works but the dynamic one doesn't, the issue is almost certainly with the format of Topic.UserAvailSites. If both versions stall, you're likely encountering a runtime bug in the current Copilot Studio experience.
    If you can share the value or Power Fx expression that populates Topic.UserAvailSites (or a sample of its contents), I can verify whether it's in the format expected by Input.ChoiceSet.

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

Season of Sharing Community Challenge Winners!

Congratulations to our community stars!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the May Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Copilot Studio

#1
Valantis Profile Picture

Valantis 245

#2
11manish Profile Picture

11manish 215

#3
sannavajjala87 Profile Picture

sannavajjala87 192 Super User 2026 Season 1

Last 30 days Overall leaderboard