UpdateAcreIntrusionZoneAsync

Updates an existing ACRE intrusion zone. Returns (Task)

Overview of UpdateAcreIntrusionZoneAsync goes here.

Name Description
AcreIntrusionZone The ACRE intrusion zone to update

Update Acre Intrusion Zone Async

Example in C#

// Returns: nothing
await client.UpdateAcreIntrusionZoneAsync(AcreIntrusionZoneInfo AcreIntrusionZone);

Example in CURL



           curl -X PUT \
               https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/acreintrusionpanels/PANEL.KEY/acreintrusionzones/ZONE.KEY \
               -H 'Authorization: Bearer TOKEN_GOES_HERE' \
               -H 'Content-Type: application/json' \
               -d '{
                       "$type":"Feenics.Keep.WebApi.Model.AcreIntrusionZoneInfo, Feenics.Keep.WebApi.Model",
                       "Key":"ZONE.KEY",
                       "CommonName":"Updated_Zone"
                   }'