【发布时间】:2018-08-17 07:47:42
【问题描述】:
我有一个创建 contentType 的子网站。我想使用以下方法从父站点添加 columnLink:
POST https://graph.microsoft.com/v1.0/sites/{site-id}/contentTypes/{contentType-id}/columnLinks
添加当前站点列按预期工作,但是当从父站点添加 columnLink 时,会出现这样的响应:
{
"error": {
"code": "itemNotFound",
"message": "The referenced column does not exist",
"innerError": {
"request-id": "...,
"date": "2018-07-31T11:05:34"
}
}
}
发送的正文:
{
"name": "Detail"
}
端点对请求正文中的 id 和 name 都正常工作。 (对于当前网站专栏链接)
【问题讨论】:
标签: microsoft-graph-api sharepoint-online