MarkNotificationAsReadForUser

Marks a specific notification as read for a user Returns (Task)

Overview of MarkNotificationAsReadForUser goes here.

Name Description
folder The folder containing the notification
notification The notification to mark as read
user The user to mark the notification as read for. If null, uses the current user

Mark Notification As Read For User

Example in C#

// Returns: nothing
await client.MarkNotificationAsReadForUser(FolderInfo folder, NotificationInfo notification, UserInfo user);

Example in CURL



           curl -X PUT \
               'https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/userreadnotifications/read?notificationId=NOTIFICATION.KEY&userId=USER.KEY' \
               -H 'Authorization: Bearer TOKEN_GOES_HERE'