ENAUTO Exam QuestionsBrowse all questions from this exam

ENAUTO Exam - Question 58


Which two API calls are used to trigger a device configuration sync in Cisco DNA Center? (Choose two.)

Show Answer
Correct Answer: AD

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.

Discussion

7 comments
Sign in to comment
1234567J
Jul 8, 2021

Correct answer is AD

B3nd3cida
Sep 22, 2021

Indeed AD. https://developer.cisco.com/docs/dna-center/#!get-module-info-by-id

Lyndongarcia09
Jul 18, 2022

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

Lyndongarcia09
Jul 18, 2022

A - https://developer.cisco.com/docs/dna-center/#!sync-devices-1

CheamOptions: AD
Oct 28, 2024

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.

ThePokemonNuzlockingMasterOptions: AD
Aug 23, 2024

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

KichanOptions: CE
Dec 30, 2024

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

ssink19Options: CE
Jan 29, 2025

ChatGPT says its C and E