Get Pending Configuration Modifications

get

/{versionId}/configuration/deviceConfigs/{deviceId}/configurationChanges

Retrieve all configuration modifications in the SDM database that the user made on a targeted device. All users are assigned their own configuration modification staging area to allow concurrent users to make modifications to their respective staging area so that they do not interfere with each other. No configuration modification is pushed to a device until the appropriate push action method is invoked. If this action completes successfully, the staging area is cleared and is ready for the next provisioning session. If a call made using this method after a successful push action, an empty set is returned because all modifications were applied to the device.

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

Examples of Accessing the API

See Authenticate for how to acquire a session cookie.

The following example shows how to get pending configuration modifications using curl.

curl -X GET \
    -b sessionid.txt \
    --header "Accept: application/xml" \
    "https://example.com:8443/rest/v1.3/configuration/deviceConfigs/{deviceId}/configurationChanges"

The following example shows how to get pending configuration modifications using Python.

import requests
from lxml import etree
url = "https://example.com:8443/rest/v1.3/configuration/deviceConfigs/{deviceId}/configurationChanges"
headers = { "Accept":"application/xml", "Cookie":cookie }
resp = requests.get(url, headers=headers)

Example of the Response Body

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

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<configurationChanges>
  <changedConfigElements>
    <name>realmconfig5</name>
    <operation>created</operation>
    <timestamp>2022-10-06 17:05:31</timestamp>
    <type>realmConfig</type>
    <user>admin</user>
  </changedConfigElements>
  <changedConfigElements>
    <name>test</name>
    <operation>created</operation>
    <timestamp>2022-10-06 17:25:17</timestamp>
    <type>realmConfig</type>
    <user>admin</user>
  </changedConfigElements>
</configurationChanges>

The following example shows the contents of the response body in JSON.

{
  "changedConfigElements": [
    {
      "name": "realmconfig1",
      "operation": "created",
      "timestamp": "2022-10-03 06:57:06",
      "type": "realmConfig",
      "user": "admin"
    },
    {
      "name": "SAHost10#SARegUser10",
      "operation": "created",
      "timestamp": "2022-10-03 07:15:44",
      "type": "surrogateAgent",
      "user": "admin"
    }
  ]
}
Back to Top