Update an existing door Returns (Task.)
Overview of UpdateDoorAsync goes here.
| Name | Description |
|---|---|
| item | The door information to update |
Example in C#
// Returns: nothing
await client.UpdateDoorAsync(DoorInfo item);
Example in CURL
curl -X PUT \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/doors/DOOR.KEY \
-H 'Authorization: Bearer TOKEN_GOES_HERE' \
-H 'Content-Type: application/json' \
-d '{
"$type": "Feenics.Keep.WebApi.Model.DoorInfo, Feenics.Keep.WebApi.Model",
"Key": "DOOR.KEY",
"CommonName": "Updated Door Name",
"InFolderKey": "INSTANCE.KEY"
}'