Drag and drop the following steps into the correct order to send a RESTCONF GET request to retrieve interface configuration from a Cisco IOS-XE device and apply a configuration change based on the response.
Drag steps to the numbered slots on the right, or tap a step then tap a slot.
Why this order
The correct order for a RESTCONF GET request workflow is: first, send a GET request to retrieve the current interface configuration. Second, analyze the JSON/XML response to identify required changes. Third, create the updated configuration payload in JSON or XML format.
Finally, apply the configuration change using a PUT or PATCH request. This sequence ensures you read the existing state before modifying it.
Exam trap
The most common mistake is to create the payload before analyzing the current configuration. Always retrieve the current state first to know exactly what to change.