UpdateTrakaItemAsync

Update an existing Traka item Returns (Task.)

Overview of UpdateTrakaItemAsync goes here.

Name Description
item The Traka item information to update

Update Traka Item Async

Example in C#

// Returns: nothing
await client.UpdateTrakaItemAsync(TrakaItemInfo item);

Example in CURL



           curl -X PUT \
               https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/trakaitems/ITEM.KEY \
               -H 'Authorization: Bearer TOKEN_GOES_HERE' \
               -H 'Content-Type: application/json' \
               -d '{
                   "$type": "Feenics.Keep.WebApi.Model.TrakaItemInfo, Feenics.Keep.WebApi.Model",
                   "Key": "ITEM.KEY",
                   "CommonName": "Updated Key Name",
                   "InFolderKey": "INSTANCE.KEY"
               }'