Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Outlook API - Get meeting room calendar

How can I get an Office365 meeting room calendar using Outlook Calendar REST API?

I can't find anything useful on the api documentation or stackoverflow..

like image 621
Gabe Avatar asked May 27 '16 12:05

Gabe


People also ask

How do I see booked rooms in Outlook?

Use the Room FinderIn a new meeting, select the Scheduling Assistant button on the ribbon. Select the Room Finder button to the right of the Location field or select Browse with Room Finder at the bottom in the list of suggested locations. Use the Show a room list drop-down to pick a list of rooms.

Is there an API for Outlook calendar?

The calendar API lets you get calendar items of the signed-in user, or users who have shared or delegated their calendars to the signed-in user.

Does Outlook have a doodle function?

Save time and organize meetings with Doodle scheduling directly from Outlook. With the Outlook Add-in, there is no need to waste time switching back and forth between the two platforms. This is what you can do: Access all your Doodle meetings and booking pages links directly from within Outlook.

How do I pull data from a meeting in Outlook?

To export your calendar, open Outlook and then click File > Open & Export. Choose the “Import/Export” option. In the Import and Export Wizard that opens, select “Export to a file” and then click “Next”. Select “Comma Separated Values” and click “Next”.


1 Answers

You can use the Outlook CalendarView API.

The endpiont is https://outlook.office.com/api/v2.0/users/{user mail address}/calendarview?startDateTime={start_datetime}&endDateTime={end_datetime}

Replace the {user mail address} with the meeting room address.

Find more information from https://msdn.microsoft.com/en-us/office/office365/api/calendar-rest-operations

like image 193
Jackie Avatar answered Sep 24 '22 10:09

Jackie