nerdexam
Cisco

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.

Understanding and Using APIs

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)
  • A
    7% (5)
  • B
    3% (2)
  • C
    89% (62)
  • D
    1% (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.

AAsynchronously

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.

BPeriodically

Periodic notification describes polling, where the client checks for updates on a fixed schedule, which is the opposite of the server-initiated webhook model.

CIn real timeCorrect

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.

DSynchronously

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

#webhooks#API communication#real-time notifications#event-driven architecture

Community Discussion

No community discussion yet for this question.

Full 200-901 Practice