I have a post api which takes input or request body as such:
{
"TempName":"123",
"TempInput":"{
"User1":"mark",
"User2":"trevor"
}"
}
The "user1" and "user2" are dynamic and I first fetch the schema using TempName(I do it using x-ms-dynamic-schema in th swagger and it works fine,IN FLOW it shows me two text boxes with labels "user1" and "user2" dynamically and i can enter mark and trevor in it;for some other TempName it could show different number of text boxes). Now, my request body becomes like:
{
"TempName":"123",
"TempInput":{
"user1":"mark",
"user2":"trevor"
}
}
I totally oversaw the two double quotes for TempInput's value actually required(that means it is taking a string and not object) and there is no option for me to create a string dynamically in my connector. So, is there a quick fix to convert the object to string and send it as TempInput?