Update the status of a door Returns (Task)
Overview of UpdateDoorStatusAsync goes here.
| Name | Description |
|---|---|
| door | The door to update the status for |
| status | The status to set |
Example in C#
// Returns: nothing
await client.UpdateDoorStatusAsync(DoorInfo door, DoorStatusItem status);
Example in CURL
curl -X PUT \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/doors/DOOR.KEY/status \
-H 'Authorization: Bearer TOKEN_GOES_HERE' \
-H 'Content-Type: application/json' \
-d '{
"$type":"Feenics.Keep.WebApi.Model.DoorStatusItem, Feenics.Keep.WebApi.Model"
}'