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