Hi everyone,
I’m building a scenario where a Wix webhook sends order data into Make. Inside the payload, I have an array called descriptionLines under data.lineItems[1], which contains three objects:
- Division (e.g., “Elementary”)
- School Name (e.g., “West Elementary”)
- Team Name (e.g., “Golden Dragons”)
However, when I go to map this data in later modules (like OneDrive → Search files/folders), only one “descriptionLines” field shows up in the data structure panel. I can’t see or select the other two items.
It only shows the last collection item which is Team Name, so I assume that the other two are being overwritten??
Here’s what I’ve already tried:
• Using an Iterator to loop through descriptionLines — I can see all three bundles in the execution output.
• Adding a Router with filters on Value.name = “Division”, “School Name”, and “Team Name”, then storing each value in variables.
• Using Get variable afterward and trying to merge the branches (Merge no longer exists, Aggregator didn’t seem to work as intended).
• I also tried referencing array indexes directly (e.g.,{{18.data.lineItems[1].descriptionLines[3].description}}) but the fields still don’t show up as mappable options in later modules.
At this point, I just need a reliable way to access all three descriptionLines values (Division, School, Team) in later nodes so I can use them in my OneDrive folder search and creation logic.
Has anyone dealt with this recently or found a consistent workaround now that Merge is deprecated?
Thanks in advance!

