Add a new Traka item to a folder Returns (Task.)
Overview of AddTrakaItemAsync goes here.
| Name | Description |
|---|---|
| folder | The folder to add the Traka item to |
| item | The Traka item information |
Example in C#
// Returns: TrakaItemInfo
var trakaItemInfo = await client.AddTrakaItemAsync(FolderInfo folder, TrakaItemInfo item);
Example in CURL
curl -X POST \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/trakaitems \
-H 'Authorization: Bearer TOKEN_GOES_HERE' \
-H 'Content-Type: application/json' \
-d '{
"$type": "Feenics.Keep.WebApi.Model.TrakaItemInfo, Feenics.Keep.WebApi.Model",
"CommonName": "Key 101",
"InFolderKey": "INSTANCE.KEY"
}'