Updates the status of an ACRE intrusion zone. Returns (Task)
Overview of UpdateAcreIntrusionZoneStatusAsync goes here.
| Name | Description |
|---|---|
| AcreIntrusionZone | The ACRE intrusion zone to update |
| status | The new status to set |
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"
}'