I’m using the “For Each” action to go through a Datatable, pushing the value from the first column to an API, return a JSON array.
So for example, “101” returns:
[
{
“value”: “Red”,
“session_user_id”: “jsmith”,
“last_modified”: “2019-09-16T13:27:13Z”
},
{
“value”: “Blue”,
“session_user_id”: “sjones”,
“last_modified”: “2019-09-15T17:59:07Z”
}
]
“102” returns
[
{
“value”: “Orange”,
“session_user_id”: “jsmith”,
“last_modified”: “2019-06-25T21:52:56Z”
}
]
And so on. The formatting is consistent but I have no idea how many items will return with each call.
When done, I want to end up with a datatable that looks like this:
How do I do that?