UpdateAutoUnlockScheduleAsync

Updates an auto-unlock schedule for an Engage reader. Returns ()

Save changes for Auto unlock Schedule on the designated Engage Reader.

Name Description
reader The Engage reader to update
index The auto-unlock schedule index to update
scheduleItem The auto-unlock schedule information to set

Update Auto Unlock Schedule Async

Example in C#

// Returns: EngageReaderInfo
var engageReaderInfo = await client.UpdateAutoUnlockScheduleAsync(EngageReaderInfo reader, Int32 index, AutoUnlockScheduleItem scheduleItem);

Example in CURL



           curl -X PUT \
               https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/engagereaders/ENGAGEREADER.KEY/autounlockschedules/1 \
               -H 'Authorization: Bearer TOKEN_GOES_HERE' \
               -H 'Content-Type: application/json' \
               -d '{
                 	"$type":"Feenics.Keep.WebApi.Model.AutoUnlockScheduleItem, Feenics.Keep.WebApi.Model",
                   "StartTime":"00:00:00",
                   "DayMask":0,
               	"Action":0
               }'