UpdateNotificationAsync

Updates an existing notification. Returns (Task)

Overview of UpdateNotificationAsync goes here.

Name Description
Notification The notification information to update

Update Notification Async

Example in C#

// Returns: nothing
await client.UpdateNotificationAsync(NotificationInfo Notification);

Example in CURL



           curl -X PUT \
               https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/notifications/NOTIFICATION.KEY \
               -H 'Authorization: Bearer TOKEN_GOES_HERE' \
               -H 'Content-Type: application/json' \
               -d '{
                       "$type":"Feenics.Keep.WebApi.Model.NotificationInfo, Feenics.Keep.WebApi.Model",
                       "Key":"NOTIFICATION.KEY",
                       "CommonName":"Updated_Notification",
                       "Message":"Updated message",
                       "Severity":"Warning"
                   }'