UpdateEngageReadeScheduleAsync

Updates a schedule duration for an Engage reader. Returns ()

Save Changes the the schedule on the designated Engage Reader.

Name Description
reader The Engage reader to update
index The schedule index to update
scheduleItem The schedule duration information to set

Update Engage Reade Schedule Async

Example in C#

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

Example in CURL



           curl -X PUT \
               https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/engagereaders/ENGAGEREADER.KEY/schedules/0 \
               -H 'Authorization: Bearer TOKEN_GOES_HERE' \
               -H 'Content-Type: application/json' \
               -d '{
               	"$type":"Feenics.Keep.WebApi.Model.EngageScheduleDurationItem, Feenics.Keep.WebApi.Model",
               	"DayMask":7, #0000111 -> the day mask works the same in this schedule as the one used for Mercury Controllers
               	"StartingAt":"00:00:00",
               	"EndingAtMinutes":0
               }'