Dynamic Output Path

hi, I want to create a table where it is possible to visualize the experience users and the experience groups they belong to.
however I am not able to perform a dynamic replacement of the group id by the group name.
I thought of using something like this, a node loop, but it’s not working.

can anybody help me?

@Jonatas_Liasch, your issue is that you can’t put templates ({{ }}) in a Path field, which in this case is the Output Path field.

I will typically initialize a new variable outside the loop (so right before the Loop Node). For example, I would use the Mutate Node by putting [] or {} in the Value Template field, then check the Treat value as JSON checkbox, and in the Destination Path something like working.users. Then as I loop through each user or group, I can add to that new variable using the Array Node or Mutate Node. I have attached an example workflow for this.

Let us know if you have any further questions.

loop-through-experience-users-develop.flow (11.6 KB)

Hi @Kevin_Niemiller
It’'s working correctly :smiley:

Thank you for your help