Webhook trigger node

Hello guys!

I want to create a webhook trigger node to receive a post request from Pipefy API.

On the post request, I want to send an excel file.

I am having problems on the setup of the request body. When I dont pass anything on the API, the webhook node receives the request normally.

I couldn’t find anything related to body setup.

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 @Caio_Alves !

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!


Nothing special is needed with webhook configuration. You can leave all the default settings for POST method. Your POST request to that webhook has to be a standard POST request with Excel file included.

On webhook node side the binary file will have a spacial location for it identified as $binary and presented in “Binary” view. For example,

My curl command that sent the POST request to this webhook looks like this

curl --request POST \
  --url '<WEBHOOK_URL>' \
  --header 'Content-Type: image/png' \
  --data '<BINARY>'

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