Receiving Webhooks

This is a simple tutorial, if you want to receive webhooks from an external system, such as from payment providers, ERP systen and more.

The tutorial is not bound to a specific software or programming language. It just requires any local web application running on your development machine.

1. Start Web App

Start your local we application. That's it, just do it, however it works for you (Docker, native, ...) and make sure its reachable with HTTP or HTTPS.

2. Start Tunnel

You can now decide what service you want to use for your tunnel.

We start by running our tunnel. In this case with NGROK. If you are not yet familiar with NGROK you might want to check it out here: https://ngrok.com/

All we need is to run this line with port 443 (or 80 if you have http only) and with our hostname. This will make sure that our app thinks there is a request for this hostname, and not for the NGROK domain that would be used otherwise.

ngrok http --region=eu --host-header={my-hostname} 443

3. Update SquadDNS

The only thing that's left to do is, to copy the generated tunnel domain and add it to your record inside SquadDNS.

That's it! You can now use your static domain in your webhook URL for your external system. If that system now calls the webhook, you should receive it locally.

Last updated