Creates a new iStar door action in the specified folder. Returns (Task)
Overview of AddiStarDoorActionAsync goes here.
| Name | Description |
|---|---|
| folder | The folder where the iStar door action will be created |
| item | The iStar door action information to create |
Example in C#
// Returns: iStarDoorActionInfo
var iStarDoorActionInfo = await client.AddiStarDoorActionAsync(FolderInfo folder, iStarDoorActionInfo item);
Example in CURL
curl -X POST \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/istardooractions \
-H 'Authorization: Bearer TOKEN_GOES_HERE' \
-H 'Content-Type: application/json' \
-d '{
"$type":"Feenics.Keep.WebApi.Model.iStarDoorActionInfo, Feenics.Keep.WebApi.Model",
"CommonName":"iStarDoorAction_for_cURL",
"Priority":1,
"ActionType":"Unlock"
}'