When querying an API or running an action repeatedly using With Items, often the results do not contain information that can associate it with the list you used for the With Items. For example, I might have a list of id numbers [321, 456, 156]. Then I use With Items to get the names associated with those ids. Now I have a separate results list, ["mary", "bob", "joe"], and I have to merge the two lists together. It would be nice if I could have the Results output be something like, [ { "item": 321, "result": "mary" }, { "item": 456, "result": "bob" }, { "item": 156, "result": "joe" } ] Or even just a single "key" field for each result, if the original "item" is very large.