I run an API call and it returns a list of items in JSON format.
Now, for each one of those items I want to do some processing. So, basically Result-of-Step-1.first_item → do sth, for each of those items.
I would think of sending the json as a list of texts in another API workflow, but I do not know how I can parse the JSON in that other workflow (the “Type” value is limited only to database data types and does not have API item as an option).
What is the solution to this?
Thanks