UpdateUserReadNotificationAsync

Updates an existing user read notification record Returns (Task)

Overview of UpdateUserReadNotificationAsync goes here.

Name Description
UserReadNotification The user read notification to update

Update User Read Notification Async

Example in C#

// Returns: nothing
await client.UpdateUserReadNotificationAsync(UserReadNotificationInfo UserReadNotification);

Example in CURL



           curl -X PUT \
               https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/userreadnotifications/USERREADNOTIFICATION.KEY \
               -H 'Authorization: Bearer TOKEN_GOES_HERE' \
               -H 'Content-Type: application/json' \
               -d '{
                       "$type":"Feenics.Keep.WebApi.Model.UserReadNotificationInfo, Feenics.Keep.WebApi.Model",
                       "Key":"USERREADNOTIFICATION.KEY",
                       "CommonName":"Updated_UserReadNotification"
                   }'