Simple post request

Can Webhook node support simple post like a post form data?

Hi @mozger,

I don’t see why not, If you add a webhook trigger and set the HTTP Method to POST then use CURL to post some data like…

curl -X POST -F 'foo=bar' -F 'here=now' https://your-n8n-url/webhook-test/correct-horse-battery-staple

You will get something back that looks like this

Hopefully this helps :+1:

2 Likes

Hey @mozger!

Welcome to the community :sparkling_heart:

You can do a lot with the Webhook node! Here’s a blog post that will help you understand some of the capabilities of the node: Learn to Build Powerful API Endpoints Using Webhooks

1 Like