Examine the following URI that works with a Cisco DNA Controller: https://dnac.example.com/dna/intent/api/v1/network-device?managementIPAddress=10.10.22.74. Which part of the URI, per the API documentation, is considered to identify the resource but not any parameters?
- https://
- dnac.example.com
- dna/intent/api/v1/network-device
- managementIPAddress=10.10.22.74
Explanation: The URI for a REST API call uses a format of protocol://hostname/ resource?parameters. The API documentation details the resource part of the URI, as well as any optional parameters. For instance, in this case, the resource section is /dna/ intent/api/v1/network-device. Additionally, the API documentation for this resource details optional parameters in the query field as listed after the ? in the URI.
Please login or Register to submit your answer