# Get Device Set Information
This API endpoint retrieves basic information about all device sets in the current local network environment.
# Request Path
{CLTPlatform-ip}:8086/processor/searchAllDevice
- Replace
{CLTPlatform-ip}
with the corresponding IP address. - The request port is
8086
.
# Protocol
HTTP
# Method
POST
# Request Parameters
- Set the
Content-Type
of the request body toapplication/json
.
Parameter Name | Description | Required | Type | Data Dictionary | Restriction | Example |
---|---|---|---|---|---|---|
command | Command type | Yes | string | - | - | processor/searchAllDevice |
data | Data | Yes | object | - | - | - |
# Request Example
{
"command": "processor/searchAllDevice",
"data": {}
}
# Response
Parameter Name | Description | Required | Type | Data Dictionary | Restriction | Example |
---|---|---|---|---|---|---|
command | Command type | Yes | string | - | - | processor/searchAllDevice |
code | Status code | Yes | int | - | - | 20000 |
message | Message | Yes | string | - | - | Common_Success |
data | Data | Yes | object | - | - | - |
data >> deviceSet | Device set | Yes | array | - | - | - |
data >> deviceSet >> bNetConnected | Network connected (otherwise USB) | Yes | boolean | - | - | false |
data >> deviceSet >> bCurrentDeviceSet | Current device set | Yes | boolean | - | - | true |
data >> deviceSet >> ipAddress | Device set IP address | Yes | string | - | - | 192.168.1.102 |
data >> deviceSet >> deviceList | Cascaded device list | Yes | array | - | - | - |
data >> deviceSet >> deviceList >> index | Sender index | Yes | int | - | - | - |
data >> deviceSet >> deviceList >> type | Model definition | No | int | - | - | - |
data >> deviceSet >> deviceList >> typeVersion | Model version | Yes | string | - | - | X16 |
data >> deviceSet >> deviceList >> name | Sender name (UTF-8, no more than 64 bytes) | Yes | string | - | - | - |
data >> deviceSet >> deviceList >> screenGroupCount | Screen group count | Yes | int | - | - | - |
data >> deviceSet >> deviceList >> portCount | Network port count | Yes | int | - | - | - |
# Response Example
{
"code": 20000,
"command": "processor/searchAllDevice",
"data": {
"deviceSet": [{
"bCurrentDeviceSet": true,
"bNetConnected": true,
"deviceList": [{
"index": 0,
"name": "Processor",
"portCount": 400,
"screenGroupCount": 4,
"supportMaxPresetCount": 128,
"temperature": 43.33000183105469,
"type": 131107,
"typeVersion": "U9 1.00"
}],
"ipAddress": "192.168.1.10"
}]
},
"message": "Common_Success"
}