Hello
I faced a problem with lack of native loop functionality in copilot studio. For client we are preparing solution which will:
1. Get a JSON data from azure function
2. Ask user some questions to get missing values
3. Post result using http triggered Azure function
In point 2 we have to ask user to fill values for a list of objects like
{
...
nodes: [
{
name: String
extrenalNumber: String
},
{
name: String
extrenalNumber: String
}
]
}
As a solution we were thinking of
1. using some big dynamic adaptive card which will ask user to fill in inputText required values for all of objects
2. create a loop that will post adaptive card foreach object
Is there any way to complete such task with copilot studio or we should migrate to Bot Framework?