# Detect Multifunction Card Basic Information
This API endpoint detects the basic information of multifunction cards.
# Request Path
{CLTPlatform-ip}:8086/multiFunctionCard/detectAllDevice
- 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 | - | - | multiFunctionCard/detectAllDevice |
data | Data | Yes | object | - | - | - |
# Request Example
{
"command": "multiFunctionCard/detectAllDevice",
"data": {}
}
# Response
Parameter Name | Description | Required | Type | Data Dictionary | Restriction | Example |
---|---|---|---|---|---|---|
command | Command type | Yes | string | - | - | multiFunctionCard/detectAllDevice |
code | Status code | Yes | int | - | - | - |
message | Message | Yes | string | - | - | - |
data | Data | Yes | object | - | - | - |
data >> deviceList | List of detected devices | Yes | array | - | - | - |
data >> deviceList >> senderIndex | Sender index (starts from 0) | Yes | int | - | - | 0 |
data >> deviceList >> portIndex | Network port index (starts from 0) | Yes | int | - | - | 0 |
data >> deviceList >> functionCardIndex | Function card index within the network port (starts from 0) | Yes | int | - | - | 0 |
data >> deviceList >> typeVersion | Type and version information | Yes | string | - | - | IM9 12.55(ARM: 12.55 FPGA: 12.55) |
# Response Example
{
"command": "multiFunctionCard/detectAllDevice",
"code": 0,
"message": "",
"data": {
"deviceList": [{
"senderIndex": 0,
"portIndex": 0,
"functionCardIndex": 0,
"typeVersion": "IM9 12.55(ARM: 12.55 FPGA: 12.55)"
}]
}
}