200-901 · Question #674
In which way do webhooks notify a client about server or application changes by default?
The correct answer is C. In real time. Webhooks push event notifications to a client in real time the moment a triggering event occurs on the server, with no polling required.
Question
In which way do webhooks notify a client about server or application changes by default?
Options
- AAsynchronously
- BPeriodically
- CIn real time
- DSynchronously
How the community answered
(70 responses)- A7% (5)
- B3% (2)
- C89% (62)
- D1% (1)
Why each option
Webhooks push event notifications to a client in real time the moment a triggering event occurs on the server, with no polling required.
Asynchronous describes a processing model but not the timing characteristic of webhooks - the notification is sent immediately at the time of the event, not with arbitrary or scheduled delay.
Periodic notification describes polling, where the client checks for updates on a fixed schedule, which is the opposite of the server-initiated webhook model.
Webhooks are an event-driven mechanism where the server immediately sends an HTTP POST request to the client's configured endpoint the instant a specified event occurs, enabling real-time notification. This push model is the defining characteristic that differentiates webhooks from polling, where a client repeatedly requests updates on a schedule. The real-time delivery makes webhooks efficient for time-sensitive integrations and automation.
Synchronous means the client blocks waiting for a response within the same connection - webhooks are outbound server-initiated pushes, not responses within a synchronous request cycle.
Concept tested: Webhook real-time event notification behavior
Source: https://developer.webex.com/docs/webhooks
Topics
Community Discussion
No community discussion yet for this question.