Search code examples
office365outlook-restapi

Getting events from specific calendar using office 365 API


I am trying to get events from specific calendar (non default) using Office 365 API. I found this URL from the office 365 API docs.

GET https://outlook.office.com/api/{version}/me/calendars/{calendar_id}/calendarview?startDateTime={start_datetime}&endDateTime={end_datetime}

Where i replaced {calendar_id} with actual ID which i got from another API call which returns all calendar groups.

GET https://outlook.office.com/api/{version}/me/calendargroups

After replacing all relevant parameters, i am getting a HTTP 500 error.

But i can get events for my default calendar with

GET https://outlook.office.com/api/{version}/me/calendarview?startDateTime={start_datetime}&endDateTime={end_datetime}

How can i get events from specific (non default) calendar ?

Appreciate your help.


Solution

  • The form you have is right. However, you said you got the ID from GET https://outlook.office.com/api/{version}/me/calendargroups, which doesn't return calendars, but calendar groups! So the ID you have is likely the issue. Try doing a GET https://outlook.office.com/api/{version}/me/calendars to get the actual calendar folders, then use the ID from the one you want to query.