SOLVED

Can I Change Who Receives Comment Notifications on a Page?

Brass Contributor

I created a few pages for someone but now I am getting email notifications for comments added to, or "likes" of, the page, which they should be getting instead.  Is there a way to change the page's "created by" property?  I assume that is what controls who is notified.

4 Replies
best response confirmed by Ukiman1014 (Brass Contributor)
Solution

@Ukiman1014 You cannot change 'Created by' field. It is a system column. It is kind of grey area on who gets the notifications. It is mentioned that author of the page will be notified when someone comments or likes a page. Author of page is some one who gets mentioned at the header of the page. But in my experience, email notifications were always sent to the person who creates the page. 

https://techcommunity.microsoft.com/t5/microsoft-sharepoint-blog/april-2019-updates-to-sharepoint-ne... 

Here is feedback item logged for this case https://feedbackportal.microsoft.com/feedback/idea/272f6297-dd1c-ec11-b6e7-0022481f8046 

@Ukiman1014 You cannot update the Created By column value from SharePoint UI.

 

However you can update it using the SharePoint REST API call. You have to make the POST call to this URL:

 

<siteUrl>/_api/web/lists/getbytitle('Site Pages')/items(1)/validateUpdateListItem

 

Body of the API call should be like: 

 

{
    "formValues": [
        {
            "FieldName": "Author",
            "FieldValue": [
                {
                    "Key": "i:0#.f|membership|email address removed for privacy reasons"
                }
            ]
        }
    ]
    "bNewDocumentUpdate": true
}

Use <siteUrl> and user LoginName inside "Key" as per your requirements.

 


Please click Mark as Best Response & Like if my post helped you to solve your issue. This will help others to find the correct solution easily. It also closes the item. If the post was useful in other ways, please consider giving it Like.

Thanks for the responses. In the end, I had the person who wanted to receive the comments make a copy of the page, so they were the creator. I then deleted the original page and renamed the copy to match the original. Luckily there weren't any shared links to the page that I needed to worry about.
Thanks for the useful info, the second link is blocked for me so wonder if you received any update on allowing the notification recipient to be changed. Someone external is creating pages for me but I need to get the notification as they don't work in my team.
1 best response

Accepted Solutions
best response confirmed by Ukiman1014 (Brass Contributor)
Solution

@Ukiman1014 You cannot change 'Created by' field. It is a system column. It is kind of grey area on who gets the notifications. It is mentioned that author of the page will be notified when someone comments or likes a page. Author of page is some one who gets mentioned at the header of the page. But in my experience, email notifications were always sent to the person who creates the page. 

https://techcommunity.microsoft.com/t5/microsoft-sharepoint-blog/april-2019-updates-to-sharepoint-ne... 

Here is feedback item logged for this case https://feedbackportal.microsoft.com/feedback/idea/272f6297-dd1c-ec11-b6e7-0022481f8046 

View solution in original post