# Detect Receiver Card Information
This API endpoint allows for the quick detection of receiver cards.
# Request Path
{CLTPlatform-ip}:8086/receiver/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 | - | - | receiver/detectAllDevice |
data | Data | Yes | object | - | - | - |
# Request Example
{
"command": "receiver/detectAllDevice",
"data": {}
}
# Response
Parameter Name | Description | Required | Type | Data Dictionary | Restriction | Example |
---|---|---|---|---|---|---|
command | Command type | Yes | string | - | - | receiver/detectAllDevice |
code | Status code | Yes | int | - | - | - |
message | Message | Yes | string | - | - | - |
data | Data | Yes | object | - | - | - |
data >> deviceList | List of detected receiver cards | Yes | array | - | - | - |
data >> deviceList >> portIndex | Network port index | Yes | int | - | - | - |
data >> deviceList >> senderIndex | Sender index | Yes | int | - | - | - |
data >> deviceList >> receiverIndex | Receiver card index | Yes | int | - | - | - |
data >> deviceList >> typeVersion | Model version | Yes | string | - | - | - |
data >> deviceList >> type | Model definition | Yes | int | - | - | - |
# Response Example
{
"code": 20000,
"command": "receiver/detectAllDevice",
"data": {
"deviceList": null
},
"message": "Common_Success"
}