Updates an existing iStar door action. Returns (Task)
Overview of UpdateiStarDoorActionAsync goes here.
| Name | Description |
|---|---|
| item | The iStar door action information to update |
Example in C#
// Returns: nothing
await client.UpdateiStarDoorActionAsync(iStarDoorActionInfo item);
Example in CURL
curl -X PUT \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/istardooractions/ACTION.KEY \
-H 'Authorization: Bearer TOKEN_GOES_HERE' \
-H 'Content-Type: application/json' \
-d '{
"$type":"Feenics.Keep.WebApi.Model.iStarDoorActionInfo, Feenics.Keep.WebApi.Model",
"Key":"ACTION.KEY",
"CommonName":"Updated_iStarDoorAction",
"Priority":2,
"ActionType":"Lock"
}'