UpdateInputAsync

Update an existing input Returns (Task.)

Overview of UpdateInputAsync goes here.

Name Description
item The input information to update

Update Input Async

Example in C#

// Returns: nothing
await client.UpdateInputAsync(InputInfo item);

Example in CURL



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