Hey there. I have a problem with building my workflow. I’m getting data into a webhook. All the data is stored in an array with 16 objects in it. In order to process all that data I need to split that data into 16 separate items.
In addition to that I have to get another array from our CRM to check if the items are already in the customers contacts information.
Now I have the following problem. If I split the webhook data before I do my first http request I get the same array from our CRM 16 times. When i do it afterwards I can’t split up the data from the webhok any more. I get the following error code:
Is there a way to either solve the error or to build it in a different way so that I don’t get the same array 16 times?
Unfortunately I cant share the whole workflow because there is company data and api keys included in the workflow.
n8n is running on version 1.72.1, is self-hosted and I’m using windows if that helps.