Erro na execução do fluxo

Não está carregando a parte que mostra a execução do fluxo, abaixo um exemplo da forma correta.

400 Workflow “Aux_Get Lines” (ID: 9oIhszv8hmpBCB6l) has no node to start the workflow - at least one trigger, poller or webhook node is required
Oct 30 16:04:11 CE-SRV37 n8n[57488]: 400 Workflow “Aux_ Guardrails” (ID: cuTSxpRBiFFjKVmx) has no node to start the workflow - at least one trigger, poller or webhook node is required

Describe the problem/error/question

What is the error message (if any)?

Please share your workflow

(Select the nodes on your canvas and use the keyboard shortcuts CMD+C/CTRL+C and CMD+V/CTRL+V to copy and paste the workflow.)

Share the output returned by the last node

Information on your n8n setup

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

Hi @Valdinei_Duarte

Welcome to the n8n community!

I have tried to reproduce the error that you’re facing on my end by testing out the “Extract from File“ node by receiving data from a test HTTP Request:

https://people.sc.fsu.edu/\~jburkardt/data/csv/hw_200.csv

The Extract from File node is failing because the data from your previous node isn’t passing the uploaded file as binary data. To fix it, it’s important to receive the data as a binary file. I see that you are using HTTP Request nodes. The error on your end means that the node couldn’t find the binary file field named “Arquivos”. You need to select the Response Format as “File” and then the exact same name for “Put Output in Field” will go as “Input Binary Field” for the Extract from file node. In my case it is “data”:

After that, the HTTP request sent the file as binary input (under the data field), and the Extract from File node is able to process the file details:

You could follow the same approach for triggering your workflow and fixing the 400 Workflow error.

Hope this answers your question. :slight_smile:

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