Last Updated on : 2023-06-21 07:12:54download
Query a specified electricity safety rule of an electrical device.
GET: /v1.0/iot-03/power-devices/{device_id}/safety-rules
Parameter name | Type | IN | Required | Description |
---|---|---|---|---|
device_id | String | uri | true | The device ID. |
rule_types | String | query | true | The type of safety rules. Multiple rules are separated with commas (,). |
Parameter name | Type | Description |
---|---|---|
result | List | The information about a specified electricity safety rule of an electrical device. |
Description of result
Parameter name | Type | Description |
---|---|---|
rule_type | String | The type of safety rules. |
rule_threshold | Integer | The threshold of safety rules. |
support | Boolean |
|
switch_off | Boolean |
|
GET: /v1.0/iot-03/power-devices/6c814919a3f54fb4eb****/safety-rules?rule_types=ov_cr,ov_vol,overload,undervoltage
{
"result": [
{
"rule_type": "overload",
"switch_off": true,
"rule_threshold": 13,
"support": true
},
{
"rule_type": "ov_vol",
"switch_off": true,
"rule_threshold": 275,
"support": true
},
{
"rule_type": "ov_cr",
"switch_off": true,
"rule_threshold": 63,
"support": true
},
{
"rule_type": "undervoltage",
"switch_off": true,
"rule_threshold": 160,
"support": true
}
],
"t": 1637833388218,
"success": true
}
For more information, see error code.
Is this page helpful?
YesFeedbackIs this page helpful?
YesFeedback