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.