问题描述
在寻找会议室的背景下,我一段时间以来一直在摆弄Microsoft Graph API.
I have been fiddling with the Microsoft Graph API for sometime now in the context of finding a meeting room.
虽然我可以使用以下api调用来检索会议室列表
While I could retrieve the list of meeting rooms using the following api call
/v1.0/me/people?$filter=personType%2fsubclass+eq+%27Room%27
我想知道我是否可以获取与创建会议室时已自定义添加的会议室相关的属性(例如会议室容量,可用的投影仪等).
I wonder if I could fetch the attributes associated with the meeting rooms (like meeting room capacity , projector available etc.,) which have been custom added when creating a meeting room.
推荐答案
/people
方法不是房间的可靠来源,但是 findRooms 和 findRoomLists .
The /people
method isn't a reliable source for rooms , but there is a /beta
endpoint for findRooms and findRoomLists.
也就是说,很遗憾,无法检索扩展资源属性,例如msExchResourceCapacity
,msExchResourceDisplay
或`msExchResourceMetaData.我建议访问 UserVoice 并将其添加为功能建议.
That said, it unfortunately isn't possible to retrieve the extended resource properties such as msExchResourceCapacity
, msExchResourceDisplay
or `msExchResourceMetaData. I recommend visiting the UserVoice and adding this as a feature suggestion.
这篇关于如何通过MS Graph API获取会议室资源?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!