
Announcements
This question is similar to the one here. Data query in JSON code of Adaptive card - Power Platform Community (microsoft.com)
We have a dropdown to be shown in Outlook actionable message . This dropdown should show all active directory groups . (Similar to users but groups instead of users)
So I just changed, Users to Groups in Data.Query part. However , it seems that's not enough and i just get blank dropdown. Is there workaround to this?
"type": "Input.ChoiceSet",
"choices": [],
"choices.data":
{
"type": "Data.Query",
"dataset": "graph.microsoft.com/GROUPS"
},
"id": "people-picker",
"isMultiSelect": true
}