Http Request and Split-Out problem

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.

It looks like your topic is missing some important information. Could you provide the following if applicable.

  • n8n version:
  • Database (default: SQLite):
  • n8n EXECUTIONS_PROCESS setting (default: own, main):
  • Running n8n via (Docker, npm, n8n cloud, desktop app):
  • Operating system:

I kinda got it solved on my own. I used an edit field node to remap the data from the webhook in order to split this up.

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.