2
votes

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.

2

2 Answers

1
votes

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.

1
votes

How to get all events of a calendar with "recurence" expression? Using

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

It returns me several events instead of one with the expression recurrence.