200-901 · Question #184
What are two use cases where webhooks are effective? (Choose two.)
The correct answer is C. Inform a previously defined chat channel after a deployment fails. D. Send an email to a customer of an online store after payment is complete.. Webhooks are event-driven HTTP callbacks that automatically notify external systems when a specific event occurs - they push data to a predefined URL without polling. Informing a chat channel after a deployment fails (C) and sending a payment confirmation email (D) are classic we
Question
What are two use cases where webhooks are effective? (Choose two.)
Options
- AFilter out information from a response to an API call.
- BClose a session with a web server after a specific amount of time.
- CInform a previously defined chat channel after a deployment fails.
- DSend an email to a customer of an online store after payment is complete.
- EChange the response formal or content type of an API call.
How the community answered
(17 responses)- B6% (1)
- C88% (15)
- E6% (1)
Explanation
Webhooks are event-driven HTTP callbacks that automatically notify external systems when a specific event occurs - they push data to a predefined URL without polling. Informing a chat channel after a deployment fails (C) and sending a payment confirmation email (D) are classic webhook use cases because both are triggered by discrete events. The other options describe API request/response manipulation (A, E) or session management (B), which are unrelated to webhooks.
Topics
Community Discussion
No community discussion yet for this question.