200-901 · Question #36
Which type of HTTP method is used by the Meraki and Webex Teams APIs to send webhook notifications?
The correct answer is D. HTTP POST. Webhooks are event-driven HTTP callbacks. When a subscribed event occurs (e.g., a message posted in Webex Teams, or a Meraki device going offline), the platform sends an HTTP POST request to the pre-configured callback URL. POST is used because the notification payload (event…
Question
Which type of HTTP method is used by the Meraki and Webex Teams APIs to send webhook notifications?
Options
- AHTTP GET
- BHTTP PUT
- CHTTP HEAD
- DHTTP POST
How the community answered
(26 responses)- A8% (2)
- C4% (1)
- D88% (23)
Explanation
Webhooks are event-driven HTTP callbacks. When a subscribed event occurs (e.g., a message posted in Webex Teams, or a Meraki device going offline), the platform sends an HTTP POST request to the pre-configured callback URL. POST is used because the notification payload (event data in JSON) must be included in the request body, which GET and HEAD do not support. PUT is used for full resource updates, not for event notifications. Both Cisco Meraki and Webex Teams webhooks follow this industry-standard POST pattern.
Topics
Community Discussion
No community discussion yet for this question.