Returns ()
Save changes for Auto unlock Schedule on the designated Engage Reader.
Name | Description |
---|---|
reader | |
index | |
scheduleItem |
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
}'