Refer to the exhibit. A developer created a Python script that is used by network engineers to retrieve information from Cisco DNA Center by using the Cisco DNA Center API. Which workflow does the Python script execute?
Refer to the exhibit. A developer created a Python script that is used by network engineers to retrieve information from Cisco DNA Center by using the Cisco DNA Center API. Which workflow does the Python script execute?
The Python script is designed to retrieve all devices and their serial numbers from the Cisco DNA Center. It does this by sending a GET request to the '/dna/intent/api/v1/network-device' endpoint, which is typically used to retrieve information about all network devices. The script then iterates over each device in the response, retrieving and printing the serial number. There is no filtering mechanism for a specific device based on serial number in the provided script, which confirms that its purpose is to retrieve all devices and their associated serial numbers.
no selection on a specific serial number: all devices are retrieved
A. Retrieve all the devices and serial numbers in Cisco DNA Center.