After a Merge node, binary file is not found even though it's in the input

Describe the problem/error/question

After a Merge node, binary file is not found even though it’s in the input.

What is the error message (if any)?

This operation expects the node’s input data to contain a binary file ‘FileUpload0’, but none was found [item 0]

Make sure that the previous node outputs a binary file

Please share your workflow

I have a Webhook node that contains a binary file. After merging it with a Jira node, the merged data is sent to a Slack node for file upload. The binary file is shown in the input of the Slack node but when uploading it, it says binary file not found.

If I remove the Merge node and connect the Webhook to Slack directly, the upload works correctly.

I’m confused as to why it errors after merging. Any help is much appreciated.


Information on your n8n setup

  • **Running n8n via 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:

Welcome to the community @gween1435 !

Tip for sharing information

Pasting your n8n workflow


Ensure to copy your n8n workflow and paste it in the code block, that is in between the pairs of triple backticks, which also could be achieved by clicking </> (preformatted text) in the editor and pasting in your workflow.

```
<your workflow>
```

That implies to any JSON output you would like to share with us.

Make sure that you have removed any sensitive information from your workflow and include dummy or pinned data with it!


I believe you use “Append” mode in Merge. As a result the output has 2 seperate items - one from Jira and one from Webhook. When Slack tries to use data from the 1st item there is no binary file there as it is in the 2nd item.

I suspect you need to use “Combine” mode in Merge so that output contains only 1 item, which will consist of data from both - Jira and Webhook.

1 Like

That’s it! Thank you for the solution!

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