Exhibit
Goal: Read existing data only
An automation script must retrieve the current configuration state of a device from a REST API without modifying anything. Which HTTP method should it use?
Answer choices
Why each option matters
Good practice is not just finding the correct option. The wrong answers often show the exact trap the exam wants you to fall into.
Distractor review
DELETE
This is wrong because DELETE is intended for removing a resource.
Best answer
GET
This is correct because GET is the standard HTTP method for retrieving data without changing the resource.
Distractor review
PUT
This is wrong because PUT generally updates or replaces an existing resource.
Distractor review
POST
This is wrong because POST is usually associated with creating or submitting data.
Common exam trap
Common exam trap: answer the scenario, not the keyword
A frequent exam trap is selecting POST or PUT instead of GET because POST is often associated with sending data and PUT with updating resources. Candidates might mistakenly think that retrieving configuration requires sending a request with data, but in REST APIs, GET is the only method designed for safe, read-only retrieval. Using POST or PUT can unintentionally modify the device’s configuration, which violates the requirement to avoid changes. This confusion arises because POST and PUT are common in web development but have different implications in network automation contexts. Remember, GET is the standard method for fetching data without side effects.
Technical deep dive
How to think about this question
REST APIs use HTTP methods to interact with network devices programmatically, enabling automation and programmability in Cisco environments. The GET method is designed specifically to retrieve data from a resource without causing any side effects or changes. This makes GET ideal for reading the current configuration state or operational data from a device via its REST API. In contrast, other HTTP methods like POST, PUT, and DELETE are intended for creating, updating, or deleting resources, which can alter the device state. When automating network tasks, choosing the correct HTTP method is crucial to avoid unintended configuration changes. GET requests are safe and idempotent, meaning they can be repeated without modifying the resource. Cisco devices expose configuration and state information through REST APIs that respond to GET requests by returning JSON or XML data representing the device’s current status. This allows scripts to gather information such as interface status, routing tables, or VLAN configurations without risk. A common exam trap is confusing GET with POST or PUT because these methods are often used in web forms or APIs to send data. However, in network automation, GET is strictly for retrieval. Misusing POST or PUT can inadvertently change device configurations, causing network disruptions. Understanding the safe, read-only nature of GET requests helps ensure automation scripts do not modify device state unintentionally, which is critical for maintaining network stability during monitoring or auditing tasks.
KKey Concepts to Remember
- The GET HTTP method retrieves data from a REST API without modifying the resource or device configuration.
- Automation scripts use GET requests to safely obtain current device state, configuration, or statistics from Cisco network devices.
- POST requests typically create new resources or submit data, which can alter device state and are not suitable for read-only queries.
- PUT requests update or replace existing resources, making them inappropriate for simply retrieving configuration information.
- DELETE requests remove resources and should never be used when the goal is to only read device data.
- GET requests are idempotent and safe, meaning they can be repeated without causing side effects on the device.
- Cisco REST APIs commonly return device information in JSON or XML format in response to GET requests.
- Choosing the correct HTTP method prevents unintended network changes during automation and ensures predictable device behavior.
TExam Day Tips
- Watch for words such as best, first, most likely and least administrative effort.
- Review why wrong options are wrong, not only why the correct option is correct.
Related practice questions
Related 200-301 practice-question pages
Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.
CCNA subnetting practice questions
Practise IPv4 subnetting, CIDR, masks, host ranges and subnet selection.
CCNA OSPF practice questions
Practise OSPF neighbours, router IDs, metrics, areas and routing-table interpretation.
CCNA VLAN practice questions
Practise VLANs, access ports, trunks, allowed VLANs and switching scenarios.
CCNA STP practice questions
Practise spanning tree, root bridge election, port roles and STP troubleshooting.
CCNA EtherChannel practice questions
Practise LACP, PAgP, port-channel behaviour and bundle requirements.
CCNA ACL practice questions
Practise standard and extended ACLs, permit/deny logic and traffic filtering.
CCNA NAT practice questions
Practise static NAT, dynamic NAT, PAT and inside/outside address translation.
CCNA DHCP practice questions
Practise DHCP scopes, relay, leases and troubleshooting.
CCNA show ip route practice questions
Practise routing-table output, longest-prefix match, AD and route selection.
CCNA show interfaces trunk practice questions
Practise trunk verification and VLAN forwarding across switches.
CCNA wireless security practice questions
Practise WLAN security, authentication and wireless architecture concepts.
CCNA IPv6 practice questions
Practise IPv6 addressing, routes, neighbour discovery and common IPv6 exam traps.
More questions from this exam
Keep practising from the same exam bank, or move into a focused topic page if this question exposed a weak area.
Question 1
A router learns the same prefix from both OSPF and EIGRP. Which route is installed by default?
Question 2
A router shows this output: R1#show ip ospf neighbor Neighbor ID Pri State Dead Time Address Interface 10.1.1.2 1 FULL/DR 00:00:34 192.168.12.2 GigabitEthernet0/0 10.1.1.3 1 2WAY/DROTHER 00:00:39 192.168.12.3 GigabitEthernet0/0 Which statement is correct?
Question 3
What is the OSPF metric called?
Question 4
A non-root switch has two uplinks toward the root bridge. One path has a lower total STP cost than the other. What role will the lower-cost uplink have?
Question 5
A router interface applies this ACL inbound: 10 deny tcp any any eq 80 20 permit ip any any A user reports that web browsing to a server by IP address fails, but ping works. Which statement best explains the behavior?
Question 6
A router learns route 198.51.100.0/24 from OSPF with AD 110 and also has a static route to the same prefix configured with AD 150. Which route is installed?
FAQ
Questions learners often ask
What does this 200-301 question test?
The GET HTTP method retrieves data from a REST API without modifying the resource or device configuration.
What is the correct answer to this question?
The correct answer is: GET — When a script only needs to read information, the normal REST choice is GET. In plain terms, GET asks the server, “Show me the current data,” without telling it to create, replace, or delete anything. That is why GET is the standard method for retrieving device state, configuration details, statistics, or inventory information from an API endpoint. The other methods imply change. POST commonly creates or submits data. PUT commonly updates an existing resource. DELETE removes something. For a read-only query, GET is the clean and expected method.
What should I do if I get this 200-301 question wrong?
Then try more questions from the same exam bank and focus on understanding why the wrong options are tempting.
Discussion
Sign in to join the discussion.