Section
Quickstart (QS101) → Generating Reports → Part 2: Uploading the European report
Problem
Following the steps exactly, the final UploadReport (HTTP Request) node fails on execute:
NodeOperationError: The item has no binary field ‘’ [item 0]
Cause
Step 17 says to enable Send Body and set the content type to n8n Binary File, but it never mentions the Input Data Field Name. That parameter stays empty, so the node looks for a binary field named '' and can’t find the CSV — which ConvertToCSV actually outputs under the property data.
Suggested fix
Please add a sub-step after step 17:
Set Input Data Field Name to
data(the binary property produced by the ConvertToCSV node).
Reproduced on self-hosted n8n 2.26.8; adding data resolves it immediately.
Thanks!