Zyles
1
I’m trying to get the most simple workflow to work but I am unable to.
I setup a webhook to HTTP request and I want to relay the data received by the webhook into the HTTP request. But the target body is always empty.
How do I send the data?
In requestbin:

What am I missing here?
Zyles
2
Apparently I can only post one image per post…

jan
4
Welcome to the community @Zyles!
You can send multiple files with multipart-form-data
. Here an example:
The webhook node will then receive these multiple files just fine.
Zyles
5
I am sending a body of:
{ sku: 123 }
To the webhook. And I want to pass this on to the HTTP request.
Not multipart files.
The webhook is receiving the request but the data is not passed on.
1 Like
jan
6
Here an example workflow which mocks the data you have and then sends it to https://webhook.site/:
Zyles
7
So it is not possible to pass data from a webhook to a HTTP request directly without an intermediary function?
jan
8
Yes, it is. I posted an example you can execute. You simply remove the Function-Node and plug in the Webhook-Node instead.
2 Likes