Webhooks that are generated by Cisco DNA Center are REST calls with which properties?
Click on the arrows to vote for the correct answer
A. B. C. D.A.
https://developer.cisco.com/docs/dna-center/#!using-id-values-in-rest-requestsCisco DNA Center generates webhooks as a way to integrate with external applications and automate tasks. Webhooks are RESTful API calls that are triggered by events occurring within DNA Center. When an event occurs, DNA Center sends a webhook to a specified URL. The webhook includes information about the event, which can then be used by the external application to take further action.
Webhooks generated by Cisco DNA Center use JSON (JavaScript Object Notation) as their payload format. JSON is a lightweight data interchange format that is easy for humans to read and write and easy for machines to parse and generate. The JSON payload is delivered via HTTP POST, which means that the data is sent in the body of the HTTP request.
Therefore, the correct answer is C: JSON payload delivered via POST.