Webhook insertion without ordering

Webhook insertion without ordering.

I am using webhook to simply send messages to Whatsapp API supabase. The data is not being written in order, i.e. the webhook passing wrong information to Supabase.

I’ve already tested the API directly for Supabase and it works normally, I’m using n8n.cloud

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:

Hey @Suporte_sft,

Welcome to the community :raised_hands:

Can you share how you are testing this? The order would depend on a few different things, So if you sent 5 webooks they would be started in order but while the workflow is running if one is a little bit on the connection to the service it will write before the others.

If you wanted things to be strictly in order you would need to build a queing system and add each item to a queue and process them in order.