i have problem with sharepoint, i can't find correcte api to post new comment. and also i can't set value to "ParentItemID" /_api/web/lists/GetByTitle('Liste de discussions')/items
client.DefaultRequestHeaders.Add("X-HTTP-Method", "POST");
obj.Body = PostText;
obj.ContentTypeId = ContentTypeId;
obj.ParentFolderId = IdDiscussion;
obj.ParentID = Convert.ToInt32(IdDiscussion);
obj.__metadata = new MetadataCommentes();
obj.__metadata.type = MetadataTyp
... View more