Which two API calls are used to trigger a device configuration sync in Cisco DNA Center? (Choose two.)
Which two API calls are used to trigger a device configuration sync in Cisco DNA Center? (Choose two.)
To trigger a device configuration sync in Cisco DNA Center, the appropriate API calls are PUT /dna/intent/api/v1/network-device and PUT /dna/intent/api/v1/network-device/sync. The first call updates the device details and can trigger an inventory sync. The second call specifically synchronizes the devices.
Correct answer is AD
Indeed AD. https://developer.cisco.com/docs/dna-center/#!get-module-info-by-id
Answer is A and D A - https://developer.cisco.com/docs/dna-center/#!add-device-1 D - https://developer.cisco.com/docs/dna-center/#!sync-devices-2
A - https://developer.cisco.com/docs/dna-center/#!sync-devices-1
According to this page: https://developer.cisco.com/docs/dna-center/2-3-5/sync-devices/ Operation Id: syncDevices Description: Sync the devices provided as input curl -L --request PUT \ --url /dna/intent/api/v1/network-device \ --header 'Accept: application/json' \ --header 'Content-Type: ' \ --data '{ "type": "COMPUTE_DEVICE" }' AND Operation Id: syncDevicesNetworkDevice Description: Synchronizes the devices. If forceSync param is false (default) then the sync would run in normal priority thread. If forceSync param is true then the sync would run in high priority thread if available, else the sync will fail. Result can be seen in the child task of each device. curl -L --request PUT \ --url /dna/intent/api/v1/network-device/sync \ --header 'Accept: application/json' \ --header 'Content-Type: ' \ --data '{}' All the best.
Definitely A & D: A - https://developer.cisco.com/docs/dna-center/#!update-device-details (note the end of the description: "Description: Update the credentials, management IP address of a given device (or a set of devices) in Cisco DNA Center and trigger an inventory sync." D - https://developer.cisco.com/docs/dna-center/#!sync-devices
Very easy to test, why does everyone answer A and D? Use the cisco devnet sandbox. Correct answer is C y D. Even B works but in the question it clearly says only one team
ChatGPT says its C and E