UpdateBoschDoorStatusAsync

Updates the status of a Bosch door. Returns (Task)

Adjust the status of the designated Bosch Door.

Name Description
boschDoor The Bosch door to update status for
status The new status information

Update Bosch Door Status Async

Example in C#

// Returns: nothing
await client.UpdateBoschDoorStatusAsync(BoschDoorInfo boschDoor, BoschDoorStatusItem status);

Example in CURL



           curl -X PUT \
               https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/boschpanels/BOSCHPANEL.KEY/boschdoors/BOSCHDOOR.KEY/status \
               -H 'Authorization: Bearer TOKEN_GOES_HERE' \
                -H 'Content-Type: application/json' \
                -d '{
                       "$type":"Feenics.Keep.WebApi.Model.BoschDoorStatusItem, Feenics.Keep.WebApi.Model",
                       "IsUnlocked":false,
                       "IsFaulted":false,
                       "IsInLearnMode":true,
                       "IsInDiagnosticMode":false
                   }'