Adds a new user read notification record Returns (The created user read notification record)
Overview of AddUserReadNotificationAsync goes here.
| Name | Description |
|---|---|
| folder | The folder to add the user read notification to |
| item | The user read notification information to add |
Example in C#
// Returns: UserReadNotificationInfo
var userReadNotificationInfo = await client.AddUserReadNotificationAsync(FolderInfo folder, UserReadNotificationInfo item);
Example in CURL
curl -X POST \
https://api.us.acresecurity.cloud/api/f/INSTANCE.KEY/userreadnotifications \
-H 'Authorization: Bearer TOKEN_GOES_HERE' \
-H 'Content-Type: application/json' \
-d '{
"$type":"Feenics.Keep.WebApi.Model.UserReadNotificationInfo, Feenics.Keep.WebApi.Model",
"CommonName":"UserReadNotification_for_cURL"
}'