We are connecting one our applications to Microsoft Flow. To achieve one of our functions we need to have Microsoft Flow serve outputs to dynamic data.
Let me explain what I meant,
{
'Firstname': 'John',
'Lastname': 'Doe'
}
if this is the input our API needs it's easy to form this input using flow because with the UI it's easy to map values from former output to Firstname and Lastname fields. But,
{
'key1': 'value1',
'key2': 'value2',
'key3': 'value3'
}
This is the input we need for our api. Mapping dynamic data. Meaning that the value mapping UI should be dynamic. The keys
should be taken from our API.
This is a stripped down version of our actual problem. Can anyone help please?