Hello Zapier Community.
I have a trigger that produces line items. And one item stores an array of image URLs when the other have only string or number values.
Example data:
"
{
name: 'Test item',
quantity: 2,
imageURLs: :
'http://example.com/image1.png',
'http://example.com/image2.png'
]
},
{
name: 'Test item 2',
quantity: 1,
imageURLs: :'http://example.com/image3.png']
}
]
The question is how to represent imageURLs as a nested line items?