I have Copilot Studio Topic which does "Dataverse - List rows from selected environment".
The output from that Dataverse call is a JSON object with the following output.
{
"@odata.context": "https: //org.crm8.dynamics.com/api/data/v9.1.0/$metadata#test_manufacturers(test_name)",
"value": [
{
"@odata.etag": "W/\u002213432123\u0022",
"test_manufacturers": "28210077-35d7-ee11-904c-123d3ac9e615",
"test_name": "Company 1"
},
{
"@odata.etag": "W/\u002213123174\u0022",
"test_manufacturers": "1668787e-35d7-ee11-904c-123d3ac9e615",
"test_name": "Company 2"
},
{
"@odata.etag": "W/\u0022131232494\u0022",
"test_manufacturers": "bd6aed8e-35d7-ee11-904c-123d3ac9e615",
"test_name": "Company 3"
},
{
"@odata.etag": "W/\u002213123484\u0022",
"test_manufacturers": "be6aed8e-35d7-ee11-904c-123d3ac9e615",
"test_name": "Company 4"
}
]
}
Using this JSON object I would like to post a Question with options which the user can choose or post an answer where they can see that as bullet items
Is this possible? if so please guide me.