Webhook array data (descriptionLines) not fully accessible — only one item shows in mapper

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:

  1. Division (e.g., “Elementary”)
  2. School Name (e.g., “West Elementary”)
  3. 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!

Hey there,

Make will only show the first item inside the array. This is to prevent the box from expanding exponentially when you have large arrays.

If the array is always with the same structure, you can use the order index of the individual items to grab them. Or you can use the map() function to find the specific one you need if the order is scrambled.

2 Likes

Thank you.

Resolved with: {{get(map(18.data.lineItems[1].descriptionLines; “description”; “name”; “School Name”); 1)}}

1 Like