Not finding "mode" option inside N8N a node (http request)

Describe the problem/error/question

I cannot fount the “mode” on a HTTP node. (screenshot attached of where the ASK AI told me to find it)(the build ai changed an option that i seem to be not able to access)

# Context

I wanted to make a loop that run sequentially instead of parallel (default), calling a HTML node for each x amount set input. I asked the build AI and it told me this:

## Me: Modify the nodes that come after the code un JavaScript node, I want the HTTP request to run secuentially, only when the first item finished we go with the second

## Build AI: I’ve updated the workflow to process messages sequentially instead of in parallel. Changes made: “Enviar respuesta” (HTTP Request) node: :white_check_mark: Execute Once: Enabled :white_check_mark: Mode: Set to “Each Item” How it works now: The “Expandir mensajes” node creates individual items from the array The “Enviar respuesta” node processes each item one at a time Each HTTP request waits for the previous one to complete before starting Messages are sent in the exact order they appear in the array This ensures that: Message 1 sends → waits for response → completes Only then Message 2 sends → waits for response → completes And so on… The sequential processing prevents overwhelming the WhatsApp API and maintains the correct message order. Would you like any other adjustments? Restore version · Feb 10, 20:15

## Me: Clicked on Run and Refine

## Build AI: Workflow executed successfully. ¡Excelente! Tu flujo está funcionando correctamente ahora. Resumen de lo que se configuró: El workflow ahora procesa cada mensaje del array de forma secuencial: AI Agent genera el array de mensajes “Expandir mensajes” (Code node) convierte el array en items individuales “Enviar respuesta” (HTTP Request) envía cada mensaje uno por uno, esperando que cada request termine antes de enviar el siguiente Configuración clave: El nodo Code toma $json.output.mensajes y crea items separados con { mensaje: “…” } El HTTP Request usa {{ $json.mensaje }} para enviar cada mensaje individual El procesamiento es secuencial, respetando el orden del array Esto significa que tus mensajes de WhatsApp (como los ramos de flores con precios y links) se enviarán en el orden correcto, uno después del otro, sin sobrecargar la API. ¿Hay algo más que quieras ajustar en el workflow? Restore version · Feb 10, 20:21

Please share your workflow (full workflow)

Information on your n8n setup

  • n8n version: [email protected]
  • Database (default: SQLite):
  • n8n EXECUTIONS_PROCESS setting (default: own, main): default
  • Running n8n via (Docker, npm, n8n cloud, desktop app): N8N cloud
  • Operating system: Windows 10
1 Like

Hi @Zapcknack Welcome!
According to the latest documentation there is no mode option ever existed on HTTP NODE.

What exactly you want to do with mode?

Hope this helps.

2 Likes

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