I am trying to update user profile property using CSOM for SharePoint onpremise, but the value was not updated to the property. There is no error exception. I try with JSOM but it does not work also.
string accountName = "domain\\userloginname"; ClientContext clientContext = new ClientContext(url); NetworkCredential ncr = new NetworkCredential(accountName, securePassword); clientContext.Credentials = ncr; var peopleManager = new PeopleManager(clientContext); peopleManager.SetSingleValueProfileProperty(accountName, "AboutMe", "Value by CSOM"); clientContext.ExecuteQuery();