I always get an empty response when I try to use the GetRoomLists
web-service: https://msdn.microsoft.com/EN-US/library/office/dn643730%28v=exchg.150%29.aspx#bk_GetRoomListewsma
However, with the same account, I can correctly see rooms when I am using Outlook. If I watch the network activity when I use Outlook, I can see that roughly 3 calls are made:
GetRoomLists
is called and an empty result is returnedGetRoomsInternal
is called and this time rooms are correctly being returnedGetUserAvailabilityInternal
enables to fetch the availability of each rooms returned byGetRoomsInternal
It looks like GetRoomsInternal
and GetUserAvailabilityInternal
are exactly the API I want to call. Besides, these API seem to be private since they are not documented.
Is there a way to fetch all rooms using the public API ?