Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get free and busy rooms details in microsoft graph API for particular time period?

Is there any microsoft office graph API available where I can get available and busy meeting room details.

My requirement is that I will pass some start date time and end date time and expect all the available and busy room list.

As for as I know we can add room outlook portal admin section.

I have gone through below findRoomLists and findrooms API they are just giving rooms information not there status busy/free. I want status also Is there any functionality available in graph API.

https://graph.microsoft.com/beta/me/findRoomLists https://graph.microsoft.com/beta/me/findRooms Have gone through below link but no help.

How to display a list of available meeting rooms at present using Microsoft Graph API

Can't get all busy times of meeting rooms using the Office365 Calendar API

Thanks Ajay Tiwari

like image 788
atiwari Avatar asked Mar 08 '18 18:03

atiwari


Video Answer


1 Answers

After searching a lot I found Microsoft has an API to do this thing. See https://docs.microsoft.com/en-us/graph/api/calendar-getschedule?view=graph-rest-beta

Description says

Get the free/busy availability information for a collection of users, distributions lists, or resources, for a specified time period.

There's one catch though, it is in beta you have to be careful to use it in production. But for now it is working great.

like image 153
Lokesh Avatar answered Oct 11 '22 20:10

Lokesh