MarkNotificationAsUnreadForUser

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

Overview of MarkNotificationAsUnreadForUser goes here.

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

Mark Notification As Unread For User

Example in C#

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

Example in CURL



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