General
Table of Contents
Urls
| Param | Type | Description |
|---|---|---|
| device | Device |
Target device |
| command | String |
The request you want to send to the device |
| [params] | Object |
Parameters that are needed to handle the request |
Device
| Param | Type | default | Description |
|---|---|---|---|
| type | V800 | RadenT41 | RadenRF500 | RadenRF600 | RadenRF620 | RadenRF800 | RadenRF900 |
- | device type |
| host | String |
- | device address |
| [port] | Number |
V800: 5010 | RadenT41: 8080 | RadenRF series: 9922 |
device port |
| [username] | String |
“admin” | device network username |
| [password] | String |
- | device network password |
Example Request:
{
"device": {
"host": "192.168.20.20",
"port": 8080,
"type": "RadenT41",
"username": "admin",
"password": "123"
},
"command": "test:connection"
}
Example Responses:
HTTP/1.1 500 Internal Server Error
{
"message": "Connection Failed"
}
HTTP/1.1 401 Unauthorized
{
"message": "Authentication Failed"
}