I’m pulling data from a form through webhock, when I receive this data I intend to separate the marked checkboxes to put them in a list or database, however, I can’t separate this data.
Hey @midiacloud_mkt, do I understand correctly, that field_posts is an array inside the body? If so, you could just the Item Lists node to split it out. Here’s a quick example:
Ah my code node in there was just to mock your data/use-case, so you can ignore that. For you, only add the Item Lists node after your webhook in the way I did it.
Hmm, that’s indeed strange. It seems like your incoming data from the webhook is actually not an array but instead just individual properties. If you can, I would suggest changing the webhook to actually return an array.
Since changing a webhook is not always possible you could also try this (very hacky) solution:
You might then later use the items list or change the code slightly… I highly suggest you change the data structure of the webhook though