UpdateSchlageStatusAsync

Update Schlage Lock status Returns ()

Name Description
reader The Schlage lock reader to update
status The Schlage status information (battery, tamper, deadbolt flags)

Update Schlage Status Async

Example in C#

// Returns: nothing
await client.UpdateSchlageStatusAsync(MercuryReaderInfo reader, SchlageStatusItem status);

Example in CURL


 
           curl -X PUT \
               https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/peripherals/READER.KEY/schlagestatus
               -H 'Authorization: Bearer TOKEN_GOES_HERE'
               -d {
                       "$type":"Feenics.Keep.WebApi.Model.SchlageStatusItem, Feenics.Keep.WebApi.Model",
                       "IsIPBActive":false,
                       "IsDeadboltActive":false,
                       "IsRequesttoEnterActive":false,
                       "IsMotorStallActive":false,
                       "IsLockClutchActive":false,
                       "IsLowBatteryActive":false,
                       "IsCriticalBatteryActive":false,
                       "IsBezelTamperActive":false,
                       "IsKeyswitchActive":false,
                       "IsRFLossActive":false,
                       "IsMagneticTamperActive":false
                   }