Get security sensor settings
Returns the security sensor (zone) settings.
- No — zone number.
- Type — sensor trigger type:
- Normal mode — activates only when the system is armed and the zone is included in the active scene. Typically used for door and window sensors.
- Emergency / 24 hours — always active regardless of arming state. Used for flood, gas, smoke, and heat sensors.
- Mode — wiring mode of the sensor (
no,nc,3c,bell). - Delay — delay in seconds before the zone triggers an alarm.
- Sensor — sensor icon type shown when the zone is triggered.
Responses
- 200
- 401
OK
- application/json
- Schema
- Example (from schema)
- Example
Schema
zones object[]
List of zone settings
zone_id integerPossible values:
<= 15Zone number
type stringSensor type
mode stringSensor mode
delay integerSensor activation delay in seconds
sensor stringSensor name
- types string[]
Possible values: [
normal,emergency,24_hour]Available sensor types
- modes string[]
Possible values: [
3c,no,nc,bell]Available sensor modes
- delays integer[]
Possible values: [
0,5,15,20,25,40,60]Available sensor delays
- sensors string[]
Possible values: [
smoke,gas,pir,door,window,panic,flood,pull_cord,bed_mat]List of available sensors
{
"zones": [
{
"zone_id": 0,
"type": "normal",
"mode": "no",
"delay": 15,
"sensor": "smoke"
}
],
"types": [
"normal"
],
"modes": [
"3c"
],
"delays": [
0
],
"sensors": [
"gas"
]
}
{
"types": [
"normal",
"emergency",
"24_hour"
],
"modes": [
"3c",
"no",
"nc",
"bell"
],
"delays": [
0,
5,
15,
20,
25,
40,
60
],
"sensors": [
"smoke",
"gas",
"pir",
"door",
"window",
"panic",
"flood",
"pull_cord",
"bed_mat"
],
"zones": [
{
"zone_id": 0,
"type": "normal",
"mode": "no",
"delay": 0,
"sensor": "panic"
},
{
"zone_id": 1,
"type": "24_hour",
"mode": "3c",
"delay": 0,
"sensor": "flood"
},
{
"zone_id": 2,
"type": "24_hour",
"mode": "3c",
"delay": 0,
"sensor": "smoke"
},
{
"zone_id": 3,
"type": "24_hour",
"mode": "3c",
"delay": 0,
"sensor": "smoke"
},
{
"zone_id": 4,
"type": "24_hour",
"mode": "3c",
"delay": 0,
"sensor": "smoke"
},
{
"zone_id": 5,
"type": "24_hour",
"mode": "3c",
"delay": 0,
"sensor": "smoke"
},
{
"zone_id": 6,
"type": "24_hour",
"mode": "3c",
"delay": 0,
"sensor": "smoke"
},
{
"zone_id": 7,
"type": "normal",
"mode": "bell",
"delay": 60,
"sensor": "bed_mat"
}
]
}
Unauthorized request. Log In
- application/json
- Schema
- Example (from schema)
- Log In
Schema
- error string
Error information
{
"error": "Log In"
}
{
"error": "Log In"
}
Loading...