UpdateOutputAsync

Update an existing output Returns (Task.)

Overview of UpdateOutputAsync goes here.

Name Description
item The output information to update

Update Output Async

Example in C#

// Returns: nothing
await client.UpdateOutputAsync(OutputInfo item);

Example in CURL



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