Outlook API - Get meeting room calendar
Asked Answered
R

1

8

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

Reinhard answered 27/5, 2016 at 12:20 Comment(0)
M
12

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

Mormon answered 30/5, 2016 at 6:58 Comment(1)
True only if using an app-token (service app). Using an user token Outlook REST API so far have limitations on accessing other users calendars. Delegate access doesn't work yet, returns 401 Unauthorized - see stackoverflow.com/questions/35976578/Reinhard

© 2022 - 2024 — McMap. All rights reserved.