Quick Check
- What's the difference between polling and webhooks?
-
Answer: Polling means your workflow repeatedly checks for changes on a schedule. Webhooks mean the external service tells you immediately when something happens.
-
In a webhook workflow, which direction does the HTTP request go?
-
Answer: From the external service to your platform. The service initiates the request to notify you of an event.
-
Why might webhooks be better than polling for a form submission workflow?
- Answer: Users expect immediate feedback. With webhooks, the workflow runs the instant the form is submitted. With polling, there could be a delay of several minutes.
Next: Lesson 3 — HTTP Modules