我正在尝试使用REST API从Azure Active Directory获取会议室信息。所以我尝试了下面给出的请求,但它没有返回任何结果。我已经尝试了类似的'servicePrincipal'对象请求,也没有运气。所以我想知道在AAD REST API中是否支持reuqesting conf rooms?
https://graph.windows.net/<tenant>/contacts?api-version=2013-11-08&$filter=startswith(displayName,'Conf%20Room')
此查询以“Conf Room”开头的displayName联系人(假设我的组织AAD中的conf room displayNames以'Conf Room'开头)
答案 0 :(得分:0)
Exchange中具有邮箱的会议室是AD / Azure AD中的用户。
查询用户不是联系人。
HTTP GET https://graph.windows.net/<tenant>/users?api-version=2013-11-08&$filter=startswith(displayName,'Conf%20Room')
希望这会有所帮助。