Course A · Module A3 No-Code Automation · Lesson 10 of 17
When there's no ready-made connector between two apps, a webhook bridges the gap — and it's mostly just copy and paste.
Every automation platform has hundreds of built-in app connectors. But sooner or later you'll hit one that isn't listed. Maybe it's your booking system, your custom client portal, or a niche industry tool. That's when people say "you'd need a developer." They're usually wrong. Your single win: by the end of this lesson you'll understand what a webhook is, when to reach for one, and that setting one up is almost always copy a URL, paste it somewhere, save. That's the whole job.
Imagine a doorbell at your house. You don't stand at the window watching for visitors — you wait until the bell rings. The moment someone arrives, it sends you a signal automatically.
A webhook works exactly the same way. Instead of your automation tool constantly asking "did anything happen yet?" — which is slow and wasteful — the other app rings the doorbell the instant something occurs. It sends a small packet of data ("a new order just came in — here are the details") straight to a URL your automation tool is listening on. No polling. No delay. Instant.
That URL your automation tool gives you is called a webhook URL. It's the address of your doorbell. You copy it, go to the other app's settings, and paste it into a field usually labelled "Webhook URL" or "Callback URL". Done.
https://hook.eu2.make.com/abc123xyz. Copy the whole thing.
name: "Acme Corp",
amount: 450. You don't need to understand how it's structured beforehand.
Run the test, let your automation tool parse it, and all the fields appear as
clickable options. Technical knowledge not required.
Answer before opening. Recalling it now is what makes it stick.
It's the address of a "doorbell" your automation tool is listening on. When you paste it into another app, that app rings the bell — sends data instantly — the moment an event happens. No polling, no delay.
You triggered the form before clicking "determine data structure" — or you used a temporary test URL that expired. Paste the permanent webhook URL, click the "listen" button in Make first, then trigger the event in the other app.
Check the booking system's settings for a "Webhooks" or "Integrations" section. Most modern booking tools support webhooks as a standard fallback. If there's a webhook field, you can connect it yourself in minutes — no developer needed.
Read this next (primary source)
What Are Webhooks? — Zapier Blog — the clearest plain-English explainer available, with annotated diagrams. ~10 min. See RESOURCES.md for more.
Terms from this lesson — trigger, action, automation — are defined in the course glossary. Keep it open.