Get Device Information

get

/{versionId}/inventory/deviceMgmt/devices/{deviceId}

Retrieve device credentials that where provided when the device was added for a targeted device as well as additional summary information as provided in Device Manager graphical user interface.

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 device information using curl.

curl -X GET \
    -b sessionid.txt \
    --header "Accept: application/xml" \
    "https://example.com:8443/rest/v1.3/inventory/deviceMgmt/devices/ID2"

The following example shows how to get device information using Python.

import requests
from lxml import etree
url = "https://example.com:8443/rest/v1.3/inventory/deviceMgmt/devices/ID2"
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"?>
<device>
    <bootstrapState>Activated</bootstrapState>
    <connectivityStatus>true</connectivityStatus>
    <groupParameters>
        <description>User name to use for device communication</description>
        <name>username</name>
        <readOnly>false</readOnly>
        <value>admin</value>
    </groupParameters>
    <groupParameters>
        <description>Password of the user</description>
        <name>password</name>
        <readOnly>false</readOnly>
        <value>xxxx</value>
    </groupParameters>
    <groupParameters>
        <description>The SNMP agent mode configured for the device</description>
        <name>snmp.mode</name>
        <readOnly>true</readOnly>
        <value>v1v2</value>
        <validLists>
            <valueList>v1v2</valueList>
            <valueList>v3</valueList>
        </validLists>
    </groupParameters>
    <groupParameters>
        <description>SNMP Community to use for device communication</description>
        <name>snmp.community.name</name>
        <readOnly>false</readOnly>
        <value>jvbharad</value>
    </groupParameters>
    <groupParameters>
        <description>SNMP Port to use for device communication</description>
        <maxValue>9223372036854775807</maxValue>
        <minValue>0</minValue>
        <name>snmp.port</name>
        <readOnly>false</readOnly>
        <value>161</value>
    </groupParameters>
    <id>ID3</id>
    <ip>10.5.5.157</ip>
    <key>sd157_10.5.5.157</key>
    <manageable>true</manageable>
    <name>sd157</name>
    <nfId>ID8</nfId>
    <nfName>sd157</nfName>
    <parentGroupId>ID8</parentGroupId>
    <platformInfo>
        <platform>6100</platform>
        <serialNumber>--</serialNumber>
    </platformInfo>
    <softwareInfo>
        <configVersion>38</configVersion>
        <version>SCZ900p2</version>
    </softwareInfo>
</device>

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

{
  "bootstrapState": "Activated",
  "connectivityStatus": false,
  "groupParameters": [{
      "description": "User name to use for device communication",
      "name": "username",
      "readOnly": false,
      "value": "admin"
  },{
      "description": "Password of the user",
      "name": "password",
      "readOnly": false,
      "value": "xxxx"
  },{
      "description": "The SNMP agent mode configured for the device",
      "name": "snmp.mode",
      "readOnly": true,
      "value": "v1v2",
      "validLists": {
          "valueList": [
              "v1v2",
              "v3"
          ]
      }
  },{
      "description": "SNMP Community to use for device communication",
      "name": "snmp.community.name",
      "readOnly": false,
      "value": "soauddy"
  },{
      "description": "SNMP Port to use for device communication",
      "maxValue": 9223372036854775807,
      "minValue": 0,
      "name": "snmp.port",
      "readOnly": false,
      "value": "161"
  }],
  "id": "ID1",
  "ip": "10.4.4.161",
  "key": "sd161_10.4.4.161",
  "manageable": true,
  "name": "sd161",
  "nfId": "ID3",
  "nfName": "sd161",
  "parentGroupId": "ID3",
  "platformInfo": {
      "platform": "4600",
      "serialNumber": "--"
  },
  "softwareInfo": {
      "configVersion": "65",
      "version": "SCZ840"
  }
}
Back to Top