通过 REST 在 Azure 中删除用户的管理员 api

Delete user's manager in Azure through REST api

我可以通过 REST API 使用以下方法分配用户的管理员:

 PUT https://graph.windows.net/{userid}/users//$links/manager?api-version=2013-11-08

有正文:

Content-Type: application/json
{
 "url": "https://graph.windows.net/contoso.onmicrosoft.com/directoryObjects/fabeb27a-0481-4a80-b43e-a5c02c125874"
}

但是我怎样才能删除用户管理器呢?请帮我。 提前致谢。

请参考Azure AD Graph API的官方文档参考,如下。

  1. Other navigation properties 用于用户导航属性
  2. User Entity 继承自 DirectoryObject

根据以上内容,您可以通过对相关目录对象执行DELETE操作来删除用户的管理员,该操作来自分配用户管理员的操作的响应,如下所示。

DELETE https://graph.windows.net/contoso.onmicrosoft.com/directoryObjects/fabeb27a-0481-4a80-b43e-a5c02c125874

更多详细信息,请参阅文档Delete directoryObject