Question 40 of 100 from exam 350-901-DEVCOR: Developing Applications Using Cisco Core Platforms and APIs

Question 40 of 100 from exam 350-901-DEVCOR: Developing Applications Using Cisco Core Platforms and APIs

Question

DRAG DROP -

Booking Service

Booking API | SQL Datastore
Resource

UPDATE bookings listeners(id,ur!)
* | SET booked_by = alice’
WHERE id = ‘ABCDEF

SELECT uri FROM bookings listener:
TRUE

Refer to the exhibit above and click on the tab in the top left corner to view a diagram that describes the typical flow of requests involved when a webhook is created for a booking service.

Drag and drop the requests from the left onto the item numbers on the right that match the missing sections in the sequence diagram to design the complete flow of requests involved as a booking is updated from a web application.

Select and Place:

Answer Area

Web Application item 1
POST <listener-uri> item 2
{"bookingld": "ABCDEF"}

PATCH /bookings/ABCEDF item 3
{"bookedBy":"alice"}
Webhook Listener item 4
204 NO CONTENT item 5

[for each listener]

item 6

Explanations

Answer Area

Web Application

PATCH /bookings/ABCEDF
{"bookedBy":"alice"}

POST <listener.uri>
{"bookingid": "ABCDEF"}

| Webhook Listener

[for each listener]

204 NO CONTENT