'List[object]' object has no attribute 'Id'

It’s most likely because you have a nested list passed in for one of the inputs. When you are zipping through the lists it’s expanding the list objects, but then getting tangled on the nested list.

You can try either flattening the list before hand, or looking through the sublists in python after performing the Zip.

Cheers,
Dan

2 Likes