I am using CSOM API to update fields in a SharePoint list. I can update all fields fine, I just can't update or add to the "Image" Field. This is a new field type added in late 2020, separate from the "Hyperlink/Picture" field type. I see in the List settings, it is marked as "Thumbnail".
I have tried to set the image column to a url, as you can do this for the previous "Hyperlink/Picture" field type. Is there a way to update this field using CSOM? I can't find any mention of this new Image field type in any of the documentation.
ListItemCreationInformation itmCreation = new ListItemCreationInformation();
newItem = myList.AddItem(itmCreation);
string imageUrl = "www.myImage.com"
newItem["IMAGECOLUMN"] = imageUrl ;
newItem.Update();
cc.ExecuteQuery();