Quick Check
- In the restaurant analogy, what does the "menu" represent?
-
Answer: The API documentation — it lists what you can request and how to request it.
-
What are the four HTTP methods you'll most commonly use, and what does each one do?
-
Answer: GET (fetch), POST (create), PUT (update), DELETE (remove).
-
What's the difference between using a pre-built connector and using the HTTP module directly?
- Answer: A pre-built connector has the HTTP configuration already set up behind the scenes. The HTTP module requires you to configure it yourself, but gives you access to any API.
Next: Lesson 2 — Webhooks: Push vs. Pull