List Device Performance Information
get
/{versionId}/performance/devices
Display a list of device information that supports performance. This API supports query parameters.
Request
Path Parameters
Query 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.
Examples
Examples of Accessing the API
See Authenticate for how to acquire a session cookie.
The following example shows how to display a list of device information that supports performance using curl.
curl -X GET \
--header "Accept: application/xml" \
--header "Authorization: Bearer $TOKEN" \
"https://example.com:8443/rest/{versionId}/performance/devices"
The following example shows how to display a list of device information that supports performance using Python.
import requests
from lxml import etree
url = "https://example.com:8443/rest/{versionId}/performance/devices"
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"?>
<devices>
<devices>
<bootstrapState>Activated</bootstrapState>
<connectivityStatus>true</connectivityStatus>
<id>ID3</id>
<ip>10.0.17.186</ip>
<key>sbc186_10.0.17.186</key>
<manageable>false</manageable>
<name>sbc186</name>
<nfId>ID9</nfId>
<nfName>sd186</nfName>
<parentGroupId>ID9</parentGroupId>
<platformInfo>
<platform>NNOSVM</platform>
<serialNumber>--</serialNumber>
</platformInfo>
<softwareInfo>
<configVersion>59</configVersion>
<version>SCZ840p6</version>
</softwareInfo>
</devices>
</devices>
The following example shows the contents of the response body in JSON.
{
"devices": [{
"bootstrapState": "Activated",
"connectivityStatus": false,
"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"
}
},{
"bootstrapState": "Activated",
"connectivityStatus": true,
"id": "ID4",
"ip": "10.4.4.153",
"key": "sd153_10.4.4.153",
"manageable": true,
"name": "sd153",
"nfId": "ID11",
"nfName": "ESBC153",
"parentGroupId": "ID11",
"platformInfo": {
"platform": "6300",
"serialNumber": "--"
},
"softwareInfo": {
"configVersion": "429",
"version": "SCZ900p5"
}
},{
"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"
}
}]
}