如何使用MS Graph API添加带有parentItemId的Discussionboard ListItem

时间:2018-11-07 19:22:05

标签: api graph

我在sharepoint中有我的DiscussionBoard listItem,现在我想对MS Graph beta版的主题添加新的答复。当我创建一个列表主题时,我就知道这个主题Id(Json文件中的ParentItemID)。但是它是只读的,我无法向该字段写入值。如何添加字段或在何处添加此关系?

  ListItem item = new ListItem();
  item.Description = "test";
  item.Name = "test";

  item.ContentType = new ContentTypeInfo();
  item.ContentType.Id = commentContentType;

  item.Fields = new FieldValueSet();
  item.Fields.AdditionalData = new Dictionary<string, object>();
  item.Fields.AdditionalData.Add("Body", "test");               
  item.Fields.AdditionalData.Add("ParentItemID", "10");

0 个答案:

没有答案