Beta端点返回“无法为源自外部服务的对象更新指定的属性。”

时间:2019-01-23 17:02:00

标签: office365 microsoft-graph office365api office365-apps

我们正在尝试将Beta端点用于PATCH/user/abc。并收到以下错误:

  

无法更新具有以下属性的对象的指定属性   源于外部服务。

请求正文

{
    "onPremisesExtensionAttributes": {
        "extensionAttribute9": "TestData"
    }
}

响应正文

{
    "error": {
        "code": "Request_BadRequest",
        "message": "Unable to update the specified properties for objects that have originated within an external service.",
        "innerError": {
            "request-id": "6b67bac8-3515-4334-acba-83e942a6368d",
            "date": "2019-01-15T15:03:12"
        }
    }
}

在使用PowerShell时,我们得到一个相同的错误:

set-AzureADUserExtension -ObjectId REDACTED -ExtensionName extensionAttribute9 -ExtensionValue 12
  

代码:Request_Bad请求消息:无法更新指定的   来自外部的对象的属性   服务。 RequestId:c8a67cd6-482f-4847-87f4-7396853b9c14

此租户以前已启用DirSync,但此后已被禁用。该对象以前由DirSync管理,但是正常的Powershell现在可以在禁用DirSync之后成功对其进行修改。但是,Graph API现在可以管理许多其他属性,但是不能管理扩展属性。

0 个答案:

没有答案