I am trying to build a workflow with postman flows and I retrieve weather data from an API giving me an array (properties.periods is the json path for the array)
I would like to show now for each entry in the array certain values (properties.periods.name or properties.periods.temperature) and this as a List in flow…
I tried to create a list with select and set the path, but this sets me properties.periods.0.name, which shows me only the first value of the array in the list.
How to stream the response of the API into a list (or even a table)?
The only example I found were with a pre-defined / hard coded list as input for a list output or table output.