Update a Configuration Element

post

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

Use this (POST) method to update all top-level element and sub-element configuration instances on the SDM database. Changes are made only to your staging area. No changes are pushed to the device until you use the Perform a Device Action (POST) method.

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 update a configuration element 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/{deviceId}/configElements/update"

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"?>
<configElement>
  <elementTypePath>realmConfig</elementTypePath>
    <attributes>
      <name>id</name>
      <value>realmconfig2</value>
    </attributes>
    <attributes>
            <name>options</name>
            <value>li-enabled</value>
    </attributes>
</configElement>

Example of Accessing the API with Python

The following example shows how to update a configuration element 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/{deviceId}/configElements/update"
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>tcpInitialGuardTimer</name>
        <value>-1</value>
    </attributes>
    <attributes>
        <name>parent</name>
        <value></value>
    </attributes>
    <attributes>
        <name>codecPolicyInNetwork</name>
        <value>enabled</value>
    </attributes>
    <attributes>
        <name>dtlsSrtpProfile</name>
        <value></value>
    </attributes>
    <attributes>
        <name>trunkContext</name>
        <value></value>
    </attributes>
    <attributes>
        <name>qosConstraintName</name>
        <value></value>
    </attributes>
    <attributes>
        <name>stunEnable</name>
        <value>disabled</value>
    </attributes>
    <attributes>
        <name>deviceId</name>
        <value></value>
    </attributes>
    <attributes>
        <name>symmetricLatching</name>
        <value>disabled</value>
    </attributes>
    <attributes>
        <name>maxPacketLoss</name>
        <value>0</value>
    </attributes>
    <attributes>
        <name>windowSize</name>
        <value>0</value>
    </attributes>
    <attributes>
        <name>smIcsiMatchForInvite</name>
        <value></value>
    </attributes>
    <attributes>
        <name>hmrString</name>
        <value></value>
    </attributes>
    <attributes>
        <name>rtcpPolicy</name>
        <value></value>
    </attributes>
    <attributes>
        <name>subsqGuardTimer</name>
        <value>-1</value>
    </attributes>
    <attributes>
        <name>fallbackBandwidth</name>
        <value>0</value>
    </attributes>
    <attributes>
        <name>options</name>
        <value>li-enabled</value>
    </attributes>
    <attributes>
        <name>delayedMediaUpdate</name>
        <value>disabled</value>
    </attributes>
    <attributes>
        <name>id</name>
        <value>realmconfig2</value>
    </attributes>
    <attributes>
        <name>monthlyMinutes</name>
        <value>0</value>
    </attributes>
    <attributes>
        <name>natTrustThreshold</name>
        <value>0</value>
    </attributes>
    <attributes>
        <name>icmpDetectMultip</name>
        <value>0</value>
    </attributes>
    <attributes>
        <name>dnsRealm</name>
        <value></value>
    </attributes>
    <attributes>
        <name>stiAttest</name>
        <value></value>
    </attributes>
    <attributes>
        <name>sipProfile</name>
        <value></value>
    </attributes>
    <attributes>
        <name>smIcsiMatchForMessage</name>
        <value></value>
    </attributes>
    <attributes>
        <name>inManipulationId</name>
        <value></value>
    </attributes>
    <attributes>
        <name>stiAsTarget</name>
        <value></value>
    </attributes>
    <attributes>
        <name>rtcpMux</name>
        <value>disabled</value>
    </attributes>
    <attributes>
        <name>userCacBandwidth</name>
        <value>0</value>
    </attributes>
    <attributes>
        <name>splOptions</name>
        <value></value>
    </attributes>
    <attributes>
        <name>intranslationId</name>
        <value></value>
    </attributes>
    <attributes>
        <name>preferredNetworkAddrType</name>
        <value>none</value>
    </attributes>
    <attributes>
        <name>tcpSubsqGuardTimer</name>
        <value>-1</value>
    </attributes>
    <attributes>
        <name>defaultLocationString</name>
        <value></value>
    </attributes>
    <attributes>
        <name>mediaPolicy</name>
        <value></value>
    </attributes>
    <attributes>
        <name>outManipulationId</name>
        <value></value>
    </attributes>
    <attributes>
        <name>mergeEarlyDialogs</name>
        <value>disabled</value>
    </attributes>
    <attributes>
        <name>earlyMediaAllow</name>
        <value></value>
    </attributes>
    <attributes>
        <name>maxBandwidth</name>
        <value>0</value>
    </attributes>
    <attributes>
        <name>denyTimer</name>
        <value>30</value>
    </attributes>
    <attributes>
        <name>srvccTrfo</name>
        <value></value>
    </attributes>
    <attributes>
        <name>untrustedCacFailThreshold</name>
        <value>0</value>
    </attributes>
    <attributes>
        <name>errMsgThreshold</name>
        <value>0</value>
    </attributes>
    <attributes>
        <name>subscriptionInfo</name>
        <value>END_USER_NONE</value>
    </attributes>
    <attributes>
        <name>mrInNetwork</name>
        <value>enabled</value>
    </attributes>
    <attributes>
        <name>mediaSecPolicy</name>
        <value></value>
    </attributes>
    <attributes>
        <name>initialGuardTimer</name>
        <value>-1</value>
    </attributes>
    <attributes>
        <name>featureTrfo</name>
        <value></value>
    </attributes>
    <attributes>
        <name>codecPolicy</name>
        <value></value>
    </attributes>
    <attributes>
        <name>holdReferReinvite</name>
        <value>disabled</value>
    </attributes>
    <attributes>
        <name>tcpFlowTimeLimit</name>
        <value>-1</value>
    </attributes>
    <attributes>
        <name>rateLimit</name>
        <value>0</value>
    </attributes>
    <attributes>
        <name>flowTimeLimit</name>
        <value>-1</value>
    </attributes>
    <attributes>
        <name>dataVersion</name>
        <value></value>
    </attributes>
    <attributes>
        <name>srtpMsmPassthrough</name>
        <value>disabled</value>
    </attributes>
    <attributes>
        <name>noRtcp</name>
        <value>disabled</value>
    </attributes>
    <attributes>
        <name>trustLevel</name>
        <value>none</value>
    </attributes>
    <attributes>
        <name>constraintName</name>
        <value></value>
    </attributes>
    <attributes>
        <name>diamE2AddrRealm</name>
        <value></value>
    </attributes>
    <attributes>
        <name>stunChangedPort</name>
        <value>3479</value>
    </attributes>
    <attributes>
        <name>icmpAdvInterval</name>
        <value>0</value>
    </attributes>
    <attributes>
        <name>bwManager</name>
        <value></value>
    </attributes>
    <attributes>
        <name>mmInSystem</name>
        <value>enabled</value>
    </attributes>
    <attributes>
        <name>nodeFunctionality</name>
        <value></value>
    </attributes>
    <attributes>
        <name>referNotifyProvisional</name>
        <value>none</value>
    </attributes>
    <attributes>
        <name>mrInRealm</name>
        <value>disabled</value>
    </attributes>
    <attributes>
        <name>waitTimeForInvalidRegister</name>
        <value>0</value>
    </attributes>
    <attributes>
        <name>outtranslationId</name>
        <value></value>
    </attributes>
    <attributes>
        <name>maxMsgThreshold</name>
        <value>0</value>
    </attributes>
    <attributes>
        <name>hideEgressMediaUpdate</name>
        <value>disabled</value>
    </attributes>
    <attributes>
        <name>maxPriorityBandwidth</name>
        <value>0</value>
    </attributes>
    <attributes>
        <name>teamsFqdnInUri</name>
        <value>disabled</value>
    </attributes>
    <attributes>
        <name>codecPolicyInRealm</name>
        <value>disabled</value>
    </attributes>
    <attributes>
        <name>sessionRecordingServerTarget</name>
        <value></value>
    </attributes>
    <attributes>
        <name>maxEndPointsPerNat</name>
        <value>0</value>
    </attributes>
    <attributes>
        <name>userCacMode</name>
        <value>none</value>
    </attributes>
    <attributes>
        <name>isMSMRelease</name>
        <value>disabled</value>
    </attributes>
    <attributes>
        <name>callRecordingServerId</name>
        <value></value>
    </attributes>
    <attributes>
        <name>referCallTransfer</name>
        <value>disabled</value>
    </attributes>
    <attributes>
        <name>maxMsgThresholdUntrusted</name>
        <value>0</value>
    </attributes>
    <attributes>
        <name>netMgmtCtrl</name>
        <value>disabled</value>
    </attributes>
    <attributes>
        <name>enforcementProfile</name>
        <value></value>
    </attributes>
    <attributes>
        <name>iceProfile</name>
        <value></value>
    </attributes>
    <attributes>
        <name>tcpMediaProfile</name>
        <value></value>
    </attributes>
    <attributes>
        <name>sipIsupProfile</name>
        <value></value>
    </attributes>
    <attributes>
        <name>cacFailThreshold</name>
        <value>0</value>
    </attributes>
    <attributes>
        <name>usersite</name>
        <value></value>
    </attributes>
    <attributes>
        <name>sessionRecordingRequired</name>
        <value>disabled</value>
    </attributes>
    <attributes>
        <name>restrictedLatching</name>
        <value>none</value>
    </attributes>
    <attributes>
        <name>classProfile</name>
        <value></value>
    </attributes>
    <attributes>
        <name>userCacSessions</name>
        <value>0</value>
    </attributes>
    <attributes>
        <name>dynReferTerm</name>
        <value>disabled</value>
    </attributes>
    <attributes>
        <name>qosEnable</name>
        <value>disabled</value>
    </attributes>
    <attributes>
        <name>maxLatency</name>
        <value>0</value>
    </attributes>
    <attributes>
        <name>description</name>
        <value></value>
    </attributes>
    <attributes>
        <name>restrictionMask</name>
        <value>32</value>
    </attributes>
    <attributes>
        <name>stunServerPort</name>
        <value>3478</value>
    </attributes>
    <attributes>
        <name>stiSignalingAttest</name>
        <value>disabled</value>
    </attributes>
    <attributes>
        <name>manipPattern</name>
        <value></value>
    </attributes>
    <attributes>
        <name>stunServerIp</name>
        <value>0.0.0.0</value>
    </attributes>
    <attributes>
        <name>sdpInactiveOnly</name>
        <value>disabled</value>
    </attributes>
    <attributes>
        <name>maxJitter</name>
        <value>0</value>
    </attributes>
    <attributes>
        <name>paiStrip</name>
        <value>disabled</value>
    </attributes>
    <attributes>
        <name>sessionMaxLifeLimit</name>
        <value>0</value>
    </attributes>
    <attributes>
        <name>acctEnable</name>
        <value>enabled</value>
    </attributes>
    <attributes>
        <name>nsepMediaPolicy</name>
        <value></value>
    </attributes>
    <attributes>
        <name>altFamilyRealm</name>
        <value></value>
    </attributes>
    <attributes>
        <name>teamsFqdn</name>
        <value></value>
    </attributes>
    <attributes>
        <name>lastModifiedDate</name>
        <value>2022-08-03 03:24:57</value>
    </attributes>
    <attributes>
        <name>addrPrefix</name>
        <value></value>
    </attributes>
    <attributes>
        <name>lastModifiedBy</name>
        <value>NNC_admin_10.0.0.37</value>
    </attributes>
    <attributes>
        <name>icmpTargetIp</name>
        <value></value>
    </attributes>
    <attributes>
        <name>nonMmBwCAC</name>
        <value>disabled</value>
    </attributes>
    <attributes>
        <name>natInvalidMsgThreshold</name>
        <value>0</value>
    </attributes>
    <attributes>
        <name>stiVsTarget</name>
        <value></value>
    </attributes>
    <attributes>
        <name>mmSameIp</name>
        <value>enabled</value>
    </attributes>
    <attributes>
        <name>stunChangedIp</name>
        <value>0.0.0.0</value>
    </attributes>
    <attributes>
        <name>stiOrigId</name>
        <value></value>
    </attributes>
    <childrenElements>
        <attributes>
            <name>subPortId</name>
            <value>0</value>
        </attributes>
        <attributes>
            <name>name</name>
            <value>lo0</value>
        </attributes>
        <attributes>
            <name>family</name>
            <value>4</value>
        </attributes>
        <elementTypePath>realmConfig/networkInterfaceId</elementTypePath>
    </childrenElements>
    <elementTypePath>realmConfig</elementTypePath>
</configElement>
Back to Top