# Get Card Version Information
This API endpoint retrieves the detailed version information of a specified device's card.
# Request Path
{CLTPlatform-ip}:8086/processor/getDetailVersion
- 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/getDetailVersion |
data | Data | Yes | object | - | - | - |
data >> index | Sender index (starts from 0) | Yes | int | - | - | - |
# Request Example
{
"command": "processor/getDetailVersion",
"data": {
"index": 0
}
}
# Response
Parameter Name | Description | Required | Type | Data Dictionary | Restriction | Example |
---|---|---|---|---|---|---|
command | Command type | Yes | string | - | - | processor/getDetailVersion |
code | Status code | Yes | int | - | - | - |
message | Message | Yes | string | - | - | - |
data | Data | Yes | object | - | - | - |
data >> detailVersion | Detailed version information | Yes | string | - | - | - |
# Response Example
{
"code": 20000,
"command": "processor/getDetailVersion",
"data": {
"detailVersion": "X100 Pro-11U 2.00(Main:ARM-2.00(4026)/2.15(12997) ,Back:FPGA-0.32/0.20/1.79,Front:ARM-1.40(41) ,INPUT1_SDIx4(3G):FPGA-10.00INPUT3_HDMIx4:FPGA-1.14INPUT5_IPx2:ARM-1.18(0) FPGA-1.12INPUT6_SDI(12G):FPGA-1.00INPUT9_VGAx2_CVBSx2:ARM-1.00(0)/1.00(0)/1.00(0)/1.00(0) FPGA-1.12INPUT11_SDIx4(3G):FPGA-1.06INPUT12_DP1.2_A:ARM-1.00(0) FPGA-1.01INPUT14_DP1.2_A:ARM-1.00(0) FPGA-1.05INPUT15_SDI(12G):FPGA-1.00,OUTPUT1_8PORT:FPGA-1.10OUTPUT2_10PORT:FPGA-1.30OUTPUT3_10PORT:FPGA-2.30OUTPUT4_10PORT:FPGA-1.20OUTPUT5_10PORT:FPGA-2.33OUTPUT6_10PORT:FPGA-1.33OUTPUT7_10PORT:FPGA-2.30OUTPUT8_5G NetPort:FPGA-2.03OUTPUT9_5G NetPort:FPGA-2.03OUTPUT10_10PORT:FPGA-1.33OUTPUT12_HDMIx4:FPGA-1.22OUTPUT14_10PORT:FPGA-1.20OUTPUT16_10PORT:FPGA-2.30)"
},
"message": "Common_Success"
}