I have created a simple flow based on MS Form. The flow checks for new responses in the form and then creates an email with various values from the form. There are 4 questions on the form. The email simply use the dynamic content returned by the forms "get response details" action,
The user who requested this said that they may regularly change the content of the form but they do not want to have to change the power automate flow each time they change the form. When I have written code in the past I would have expected to get a collection and just iterate through the items to return the key\values. I was hoping it would be possible to get all the form questions and text and be able to put them into the email in a simple table. I couldn't see a way of doing this though.
There is only one form action available, "get response details". I looked at the output after it runs and it returns data similar to that shown below:
{
"responder": "mes@somewhere.com",
"submitDate": "10/29/2020 2:35:55 PM",
"3Hq0sLPDAAhyH9mSUc5Hf3WtN9zVgVKw8": "Michael Mouse",
"idFKTaBZYelztp7yaCDyxRAMWKQKVCJXH": "Smily",
"EGxSjnwxA1kuVR70jHvSQhNxqQHI0BOO5": "2012-11-05",
"IYqYyPahceDMDi2zwyERNTxf1PPOytRwP": "No"
}
The values are there but the question text they relate to seems to be a unique id rather than the question text. If anyone knows if it is possible to do this somehow it would be appreciated.
Many Thanks
Mark,