Hiya! Im creating a postman flow with two different post requests, and im trying to get it to create an extra request afterwards where im looping through the list of memberIds and using the bendeId for each request.
But currently it runs succesfully on the first memberId, but then it hangs. It looks like its trying to get a different gangId since both the memberIds are getting logged after the for loop?
It looks like whatβs happening in your flow is the bendeid is sent only once but the memberid is sent multiple times. Flowβs blocks expect every variable to be input in order to run again. In this case the For block provides the memberid multiple times but the bendeid is only sent once.
The easiest workaround is to use a FQL $map function which can add the bendeid to each memberid and return a list of objects that holds both.