Assign a Device to Element Manager for FCAPS Management

post

/{versionId}/configuration/devices

Assign a device to be managed by Session Element Manager. Once a device is assigned, Session Element Manager starts managing the device by periodically polling for health statistics and processing alarms sent from the device. To provision the device configuration, the device must be assigned to Session Element Manager.

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 assign a device to element manager for FCAPS management using curl.

curl -X POST \
    -b sessionid.txt \
    --header "Accept: application/xml" \
    --header "Content-Type: application/xml" \
    "https://example.com:8443/rest/v1.3/configuration/devices"

The following example shows how to assign a device to element manager for FCAPS management using Python.

import requests
from lxml import etree
url = "https://example.com:8443/rest/v1.3/configuration/devices"
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 Request Body

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

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<deviceAssociation>
  <deviceName>sbc193</deviceName>
  <nfName>sbc193</nfName>
</deviceAssociation>

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

{
  "deviceName": "sd177",
  "nfName": "sd177"
}

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"?>
<device>
  <bootstrapState>Activated</bootstrapState>
  <connectivityStatus>true</connectivityStatus>
  <id>ID10</id>
  <ip>10.0.17.193</ip>
  <key>sbc193_10.0.17.193</key>
  <manageable>true</manageable>
  <name>sbc193</name>
  <nfId>ID36</nfId>
  <nfName>sbc193</nfName>
  <parentGroupId>ID36</parentGroupId>
  <platformInfo>
      <platform>NNOSVM</platform>
      <serialNumber>--</serialNumber>
  </platformInfo>
  <softwareInfo>
      <configVersion>52</configVersion>
      <version>SCZ910</version>
  </softwareInfo>
  <pendingChanges>0</pendingChanges>
</device>

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

{
  "type": "restManagedDevice",
  "bootstrapState": "Activated",
  "connectivityStatus": true,
  "id": "ID5",
  "ip": "10.4.4.177",
  "key": "sd177_10.4.4.177",
  "manageable": true,
  "name": "sd177",
  "nfId": "ID13",
  "nfName": "sd177",
  "parentGroupId": "ID13",
  "platformInfo": {
      "platform": "3820",
      "serialNumber": "00:00:00:00:00:00:00:00:00:00:00:00",
      "timeZoneInfo": {
          "daySaveTimeEnd": "102603",
          "daySaveTimeStart": "033003",
          "minFromUTC": "0"
      }
  },
  "softwareInfo": {
      "configVersion": "21444",
      "version": "SCX640m7p4"
  },
  "pendingChanges": "0"
}
Back to Top