<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Getting uri keypath not found error when trying to access Cisco-IO in Tools</title>
    <link>https://community.cisco.com/t5/tools/getting-uri-keypath-not-found-error-when-trying-to-access-cisco/m-p/4691673#M1029</link>
    <description>&lt;P&gt;Based on IOS XE native model, the URI should be:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://192.168.231.192/restconf/data/Cisco-IOS-XE-native:native/ip/dhcp" target="_blank" rel="nofollow noopener noreferrer"&gt;https://192.168.231.192/restconf/data/Cisco-IOS-XE-native:native/ip/dhcp&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;or&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://192.168.231.192/restconf/data/Cisco-IOS-XE-native:native/ipv6/dhcp" target="_blank" rel="nofollow noopener noreferrer"&gt;https://192.168.231.192/restconf/data/Cisco-IOS-XE-native:native/ipv6/dhcp&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Yan&lt;/P&gt;</description>
    <pubDate>Wed, 21 Sep 2022 22:31:33 GMT</pubDate>
    <dc:creator>ygorelik</dc:creator>
    <dc:date>2022-09-21T22:31:33Z</dc:date>
    <item>
      <title>Getting uri keypath not found error when trying to access Cisco-IOS-XE-native:native/interface API</title>
      <link>https://community.cisco.com/t5/tools/getting-uri-keypath-not-found-error-when-trying-to-access-cisco/m-p/4196628#M1025</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Learning about configuring cat9k switch using RESTCONF protocol using below document&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.ciscolive.com/c/dam/r/ciscolive/us/docs/2019/pdf/5eU6DfQV/LTRCRT-2700-LG.pdf" target="_blank" rel="noopener"&gt;Session Presentation (ciscolive.com)&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Using postman tool for sending request.&lt;/P&gt;&lt;P&gt;Stuck at configuring interface, below provided steps followed&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I could able to get the list of interfaces using below API&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://192.168.43.2/restconf/data/Cisco-IOS-XE-native:native/interface" target="_blank" rel="noopener"&gt;https://192.168.43.2/restconf/data/Cisco-IOS-XE-native:native/interface&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;{
  "Cisco-IOS-XE-native:interface": {
    "GigabitEthernet": [
      {
        "name": "0/0",
        "vrf": {
          "forwarding": "Mgmt-vrf"
        },
        "ip": {
          "address": {
            "primary": {
              "address": "192.168.43.2",
              "mask": "255.255.255.0"
            }
          }
        },
        "Cisco-IOS-XE-ethernet:negotiation": {
          "auto": true
        },
        "Cisco-IOS-XE-ethernet:speed": {
          "value-1000": [
            null
          ]
        }
      },
      {
        "name": "1/0/1",
        "switchport-conf": {
          "switchport": false
        },
        "ip": {
          "address": {
            "primary": {
              "address": "192.168.43.5",
              "mask": "255.255.255.0"
            }
          }
        }
      },
      {
        "name": "1/0/10"
      },
      {
        "name": "1/0/11",
        "switchport-conf": {
          "switchport": false
        },
        "ip": {
          "address": {
            "primary": {
              "address": "10.1.1.2",
              "mask": "255.255.255.0"
            }
          }
        }
      },
        "ip": {
          "address": {
            "primary": {
              "address": "30.1.1.1",
              "mask": "255.255.255.0"
            }
          },
          "Cisco-IOS-XE-flow:flow": {
            "monitor": [
              {
                "name": "monitor-nfv9",
                "input": [
                  null
                ]
              }
            ]
          }
        }
      }
    ],
    "TenGigabitEthernet": [
      {
        "name": "1/1/1"
      },
      {
        "name": "1/1/2"
      }
    ],
    "FortyGigabitEthernet": [
      {
        "name": "1/1/1"
      },
      {
        "name": "1/1/2"
      }
    ],
    "Vlan": [
      {
        "name": 1,
        "shutdown": [
          null
        ],
        "ip": {
          "no-address": {
            "address": false
          }
        }
      }
    ]
  }
}&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So to drill down and view interface 0/0 details, used below GET request in postman&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://192.168.43.2/restconf/data/Cisco-IOS-XE-native:native/interface/GigabitEthernet=0/0" target="_blank" rel="noopener"&gt;https://192.168.43.2/restconf/data/Cisco-IOS-XE-native:native/interface/GigabitEthernet=0/0&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;but getting uri keypath not found error.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;PRE&gt;{
  "errors": {
    "error": [
      {
        "error-message": "uri keypath not found",
        "error-tag": "invalid-value",
        "error-type": "application"
      }
    ]
  }
}&lt;/PRE&gt;&lt;/DIV&gt;&lt;DIV&gt;since not getting individual interface interface response, unable to configure the interface.&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;How to get the individual interface details &amp;amp;&amp;nbsp; configure interface ?&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Thanks,&lt;/DIV&gt;&lt;DIV&gt;Mohan&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 11 Dec 2020 00:05:14 GMT</pubDate>
      <guid>https://community.cisco.com/t5/tools/getting-uri-keypath-not-found-error-when-trying-to-access-cisco/m-p/4196628#M1025</guid>
      <dc:creator>mohanconnects</dc:creator>
      <dc:date>2020-12-11T00:05:14Z</dc:date>
    </item>
    <item>
      <title>Re: Getting uri keypath not found error when trying to access Cisco-IOS-XE-native:native/interface API</title>
      <link>https://community.cisco.com/t5/tools/getting-uri-keypath-not-found-error-when-trying-to-access-cisco/m-p/4196984#M1026</link>
      <description>&lt;P&gt;Hi Mohan&lt;/P&gt;&lt;P&gt;The issue here is that your parameter "0/0" contains special character '/', which is treated in URL as separator. In this case it must be replaced with corresponding sequence "%2F". Hence your command should be:&lt;/P&gt;&lt;PRE&gt;&lt;A href="https://192.168.43.2/restconf/data/Cisco-IOS-XE-native:native/interface/GigabitEthernet=0/0" target="_blank"&gt;https://192.168.43.2/restconf/data/Cisco-IOS-XE-native:native/interface/GigabitEthernet=0%2F0&lt;/A&gt;&lt;/PRE&gt;&lt;P&gt;More about special characters you can find in &lt;A href="https://tools.ietf.org/html/rfc3986" target="_self"&gt;RFC-3986&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Dec 2020 00:16:41 GMT</pubDate>
      <guid>https://community.cisco.com/t5/tools/getting-uri-keypath-not-found-error-when-trying-to-access-cisco/m-p/4196984#M1026</guid>
      <dc:creator>yangorelik</dc:creator>
      <dc:date>2020-12-11T00:16:41Z</dc:date>
    </item>
    <item>
      <title>Re: Getting uri keypath not found error when trying to access Cisco-IOS-XE-native:native/interface API</title>
      <link>https://community.cisco.com/t5/tools/getting-uri-keypath-not-found-error-when-trying-to-access-cisco/m-p/4196996#M1027</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN&gt;Yan Gorelik,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;That worked great, please share if there any Cisco document available for how to create URI from yang model for all methods&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Mohan&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Dec 2020 00:56:04 GMT</pubDate>
      <guid>https://community.cisco.com/t5/tools/getting-uri-keypath-not-found-error-when-trying-to-access-cisco/m-p/4196996#M1027</guid>
      <dc:creator>mohanconnects</dc:creator>
      <dc:date>2020-12-11T00:56:04Z</dc:date>
    </item>
    <item>
      <title>Re: Getting uri keypath not found error when trying to access Cisco-IO</title>
      <link>https://community.cisco.com/t5/tools/getting-uri-keypath-not-found-error-when-trying-to-access-cisco/m-p/4690851#M1028</link>
      <description>&lt;P&gt;Hello Sir, I am facing a problem , please help me.&lt;/P&gt;&lt;P&gt;I want to configure DHCP server , but its showing "uri path not found"&lt;/P&gt;&lt;P&gt;using this url&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;A href="https://192.168.231.192/restconf/data/Cisco-IOS-XE-native:native/dhcp:dhcp" target="_blank"&gt;https://192.168.231.192/restconf/data/Cisco-IOS-XE-native:native/dhcp:dhcp&lt;/A&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Coul you please help me. Thank you&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 20 Sep 2022 17:25:29 GMT</pubDate>
      <guid>https://community.cisco.com/t5/tools/getting-uri-keypath-not-found-error-when-trying-to-access-cisco/m-p/4690851#M1028</guid>
      <dc:creator>Anher</dc:creator>
      <dc:date>2022-09-20T17:25:29Z</dc:date>
    </item>
    <item>
      <title>Re: Getting uri keypath not found error when trying to access Cisco-IO</title>
      <link>https://community.cisco.com/t5/tools/getting-uri-keypath-not-found-error-when-trying-to-access-cisco/m-p/4691673#M1029</link>
      <description>&lt;P&gt;Based on IOS XE native model, the URI should be:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://192.168.231.192/restconf/data/Cisco-IOS-XE-native:native/ip/dhcp" target="_blank" rel="nofollow noopener noreferrer"&gt;https://192.168.231.192/restconf/data/Cisco-IOS-XE-native:native/ip/dhcp&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;or&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://192.168.231.192/restconf/data/Cisco-IOS-XE-native:native/ipv6/dhcp" target="_blank" rel="nofollow noopener noreferrer"&gt;https://192.168.231.192/restconf/data/Cisco-IOS-XE-native:native/ipv6/dhcp&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Yan&lt;/P&gt;</description>
      <pubDate>Wed, 21 Sep 2022 22:31:33 GMT</pubDate>
      <guid>https://community.cisco.com/t5/tools/getting-uri-keypath-not-found-error-when-trying-to-access-cisco/m-p/4691673#M1029</guid>
      <dc:creator>ygorelik</dc:creator>
      <dc:date>2022-09-21T22:31:33Z</dc:date>
    </item>
  </channel>
</rss>

