Hi,
I would like to use the Return data from API function to return a list with two different values in each array entry instead of two seperate lists of values.
For example, Do a search for X and return Y and Z (two seperate values).
The data returned from the API workflow would look something like:
“Array”: [
{
“Name”: “Joe”,
“ID”: “12345”
},
{
“Name”: “Bob”,
“ID”: “58445”
},
{
“Name”: “Bill”,
“ID”: “85048”
}
]
Thanks!