Defines the operational status states for Acre intrusion detection zones
Overview of AcreIntrusionZoneStatus goes here.
| Name | Value | Description |
|---|---|---|
| OK | 0 | OK |
| Inhibit | 1 | Inhibit |
| Isolate | 2 | Isolate |
| Soak | 3 | Soak |
| Tamper | 4 | Tamper |
| Alarm | 5 | Alarm |
| OK_but_not_used_recently | 6 | OK_but_not_used_recently |
| Trouble | 7 | Trouble |
| Masked | 8 | Masked |
| Post_alarm | 9 | Post_alarm |
| Local_alarm | 10 | Local_alarm |
Example in C#
// Returns: nothing
await client.UpdateAcreIntrusionZoneStatusAsync(AcreIntrusionZoneInfo AcreIntrusionZone, AcreIntrusionZoneStatus status);
Example in CURL
curl -X PUT \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/acreintrusionpanels/PANEL.KEY/acreintrusionzones/ZONE.KEY/status \
-H 'Authorization: Bearer TOKEN_GOES_HERE' \
-H 'Content-Type: application/json' \
-d '{
"$type":"Feenics.Keep.WebApi.Model.AcreIntrusionZoneStatus, Feenics.Keep.WebApi.Model",
"Status":"Ready"
}'