200-901 · Question #352
Which HTTP method is used by webhooks and notifies a listener about an event change?
The correct answer is B. POST. Webhooks typically use the HTTP POST method to notify a listener about an event change. When an event occurs, such as an update or a change in status, the webhook sends an HTTP POST request to a predefined URL (endpoint) provided by the listener. The payload of the POST request…
Question
Which HTTP method is used by webhooks and notifies a listener about an event change?
Options
- APUT
- BPOST
- CPATCH
- DGET
How the community answered
(41 responses)- A2% (1)
- B93% (38)
- C5% (2)
Explanation
Webhooks typically use the HTTP POST method to notify a listener about an event change. When an event occurs, such as an update or a change in status, the webhook sends an HTTP POST request to a predefined URL (endpoint) provided by the listener. The payload of the POST request contains information about the event, allowing the listener to take appropriate actions in response to the event.
Topics
Community Discussion
No community discussion yet for this question.