Hi,
I have a custom API connector which retreives a dump of json data. I would like to take the results and store it in SQL. the connector works fine and it retreives the data, but im stuck with defining the next step. Here are the first two examples of the results (the list goes on):
{
"user_id": 4200,
"user_display": "0658_Test1"
},
{
"user_id": 2338,
"user_display": "10014_Test2"
}
In step 2, i would like to run a For-Each to cycle through all returned results and perform an action. I this action, I would need to specify the value of "user_display" (e.g. 0658_Test1) and perform an action. That said, i have two questions
- How do i extract the "user_display" value to hand it to the next step? I was trying to play with "split" but no lunk.
- How does Flow define the "For-Each"? Meaning. how does it decide what to proccess next? In my case, i need it to perform the For-Each action for each user_display. So start with 0658_Test1 move to the next "user_display" and perform the action for 10014_Test2, and so on..
Here is a screenshot of what i have so far.
Screenshot