Get a Configuration Element Instance

post

/{versionId}/configuration/deviceConfigs/{deviceId}/configElements/retrieve

Use this (POST) method to target and retrieve a specific configuration element instance to modify and submit them. Refer to the Update an Element method for more information about updating this element that you modified and submitted.

Request

Path Parameters
Back to Top

Response

200 Response

400 Response

The user input is invalid.

401 Response

The session ID is invalid.

404 Response

The object (resource URI, device, and so on) of your input request cannot be found.
Back to Top

Examples

Example of Accessing the API with cURL

The following example shows how to get a configuration element instance by submitting a POST request on the REST resource using cURL. For more information about cURL, see Use cURL.

curl -X POST \
    -b sessionid.txt \
    -d@request.xml \
    --header "Accept: application/xml" \
    --header "Content-Type: application/xml" \
    "https://example.com:8443/rest/v1.3/configuration/deviceConfigs/ID9/configElements/retrieve"

The following shows an example of the contents of the request.json file sent as the request body.

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<configElement>
  <elementTypePath>authParamsConfig</elementTypePath>
    <attributes>
      <name>name</name>
      <value>authparams1</value>
    </attributes>
</configElement>

Example of Accessing the API with Python

The following example shows how to get a configuration element instance by submitting a POST request on the REST resource using Python. This example assumes the cookie variable contains a valid authentication cookie. For an example of authenticating with Python, see Authenticate.

import requests
from lxml import etree
url = "https://example.com:8443/rest/v1.3/configuration/deviceConfigs/ID9/configElements/retrieve"
headers = { "Accept":"application/xml", "Content-Type":"application/xml", "Cookie":cookie }
data = etree.tostring(etree.parse("request.json"))
resp = requests.post(url, headers=headers, data=data)

Example of the Response Body

The following example shows the contents of the response body in XML format.

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<configElement>
    <attributes>
        <name>authParamsProt</name>
        <value>eap</value>
    </attributes>
    <attributes>
        <name>lastModifiedDate</name>
        <value>2022-08-03 03:07:53</value>
    </attributes>
    <attributes>
        <name>dataVersion</name>
        <value></value>
    </attributes>
    <attributes>
        <name>lastModifiedBy</name>
        <value>NNC_admin_10.0.0.36</value>
    </attributes>
    <attributes>
        <name>name</name>
        <value>authparams1</value>
    </attributes>
    <attributes>
        <name>options</name>
        <value></value>
    </attributes>
    <attributes>
        <name>authParamsStrategy</name>
        <value>hunt</value>
    </attributes>
    <childrenElements>
        <attributes>
            <name>ip</name>
            <value>10.20.20.10</value>
        </attributes>
        <elementTypePath>authParamsConfig/authParamsServers</elementTypePath>
    </childrenElements>
    <elementTypePath>authParamsConfig</elementTypePath>
</configElement>
Back to Top