Update Schlage Lock status Returns ()
Name | Description |
---|---|
reader | Must be a schlage lock reader |
status | The status to be attached to the reader |
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
}