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.
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.