Microsoft Graph API缩写属性

时间:2019-01-21 14:52:32

标签: azure-active-directory azure-ad-graph-api

嘿,我想在图形浏览器中检索用户的姓名缩写。我将Thies字段与AD Connect zu Azure AD同步,但是在文档中我没有看到任何类似的属性:https://docs.microsoft.com/en-us/graph/api/resources/user?view=graph-rest-1.0

我知道该属性位于Azure AD上,但是如何使用Graph API检索它?

谢谢与问候

1 个答案:

答案 0 :(得分:0)

在AAD中,它没有定义此属性Initials,它是AD中而不是AAD中AD的用户属性。

在AD中,您可以使用powershell通过以下方式获取用户的姓名缩写:

Get-ADUser "YourUser" -Properties Initials

在MS图形浏览器中,我为所有用户(包括来自AD的同步用户)尝试了Get Https://https://graph.microsoft.com/v1.0/users?$select=Initials,然后对于所有用户,返回值均为null。

enter image description here

返回:

enter image description here