350-401 REST APIs and Data Models • Set 2
350-401 REST APIs and Data Models Practice Test 2 — 15 questions with explanations. Free, no signup.
An engineer is using the Cisco IOS-XE RESTCONF API to create a new loopback interface. The following JSON payload is sent in a POST request to '/restconf/data/ietf-interfaces:interfaces':
```json
{"ietf-interfaces:interface": [
{
"name": "Loopback100",
"description": "Management Loopback",
"type": "iana-if-type:softwareLoopback",
"enabled": true,"ietf-ip:ipv4": {
"address": [
{
"ip": "192.168.1.1",
"netmask": "255.255.255.0"
}
]
}
}
]
}```
What is the correct HTTP method and URL for this operation?