[iOS][MSTeams][PowerAutomate] Adaptive card with subcard only returns data from subcard
See original GitHub issuePlatform
What platform is your issue or question related to? (Delete other platforms).
- iOS
Author or host
MSTeams
Details
I’m building a flow in Power Automate with the action “Post an Adaptive Card to a Teams user and wait for a response” action. The card has a main card, and a sub card. Both cards have input fields and submit actions. It works great everywhere except on iOS devices.
If i fill out the main card, and submit. iOS only returns data from the subcard.
Snippet of output from working platforms:
"submitActionId": "submitFood", "data": { "txtFood": "Salmon", "txtDrink": "" }
Snippet of output from iOS devices:
"submitActionId": "submitFood", "data": { "txtDrink": "" }
I’ve attached the adaptive card JSON FoodOrder.JSON.txt
(this is obviously not the real adaptive card I’m working with, but the concept and structure is the same)
Issue Analytics
- State:
- Created 3 years ago
- Comments:9 (7 by maintainers)
Top GitHub Comments
As a side note, with the original adaptive card i did not get any “dynamic content” in flow. This was also fixed when using actions instead of ActionSet.
@jwoo-msft Thanks for the quick reply. My main source for learning adaptive cards have been playing around in the designer. Adding an ActionSet is the only graphical way to add actions there AFAIK. It seems to work like expected when using actions. Thanks!