问题
Using the Microsoft Graph API, I would like to find rooms by either name or email address, such as:
https://graph.microsoft.com/beta/me/findRooms?$filter=startswith(mail,'cal_')
or
https://graph.microsoft.com/beta/me/findRooms?$filter=startswith(name,'Building 1')
Our rooms are not in RoomLists, and there are well over 100 rooms.
How can I query for a specific, or subset of rooms?
回答1:
The API is very limited in beta, and doesn't support OData query parameters like $filter. Let the team know how you feel about it :) https://officespdev.uservoice.com/.
来源:https://stackoverflow.com/questions/47541711/findrooms-by-name-or-email-address