Resolving Recurrence Visibility in Microsoft Graph API: Seeking Endpoint Solutions for Daily Meeting Instances

Muhammed Ashiq 0 Reputation points
2023-12-09T03:47:45.6166667+00:00

I am unable to see recurring meetings in the Graph API. Currently, it shows only one instance. For example, if there is a meeting that recurs daily, I should be able to see the meeting for all the days. However, it is only displaying the meeting on the created date. I have explored other methods, but if the parent meeting is not present in the fetched data, it won't show. How can I overcome this problem? Is there an endpoint or a solution available for this issue?Currently using this endpoint(/calendar/events?top=30&$orderby=start/dateTime desc)

Microsoft Graph
Microsoft Graph
A Microsoft programmability model that exposes REST APIs and client libraries to access data on Microsoft 365 services.
12,755 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. AsithwMSFT 1,435 Reputation points Microsoft Vendor
    2023-12-09T19:59:06.59+00:00

    @Muhammed Ashiq

    if you know the recurrence event id with start and end dates you can find instances of the master event as below. it will list down all occurrences.

    GET /me/events/{id}/instances?startDateTime={start_datetime}&endDateTime={end_datetime}
    

    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.