How to get the meeting room resources through MS Graph API?

微笑、不失礼 提交于 2019-12-11 05:34:53

问题


I have been fiddling with the Microsoft Graph API for sometime now in the context of finding a meeting room.

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.


回答1:


The /people method isn't a reliable source for rooms , but there is a /beta endpoint for findRooms and findRoomLists.

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.



来源:https://stackoverflow.com/questions/47067365/how-to-get-the-meeting-room-resources-through-ms-graph-api

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!