Hi @Browsing Calendar ,
There is way with which we can update this and following instances of a recurring event in Outlook Calendar.
Please refer below MS document for the same.
Example : Update an recurring event using Calendar API (Sample Request)
PATCH https://graph.microsoft.com/v1.0/me/events/{id}
Content-type: application/json
{
"originalStartTimeZone": "originalStartTimeZone-value",
"originalEndTimeZone": "originalEndTimeZone-value",
"responseStatus": {
"response": "",
"time": "datetime-value"
},
"recurrence": null,
"reminderMinutesBeforeStart": 99,
"isOnlineMeeting": true,
"onlineMeetingProvider": "teamsForBusiness",
"isReminderOn": true,
"hideAttendees": false,
"categories": ["Red category"]
}
So we have recurring events in calendar as shown in below.
We can fetch these recurring event details using Graph API GET call as shown in below screenshot.
We will get Response as shown above.
We we want to update this and following instances of a recurring event in Outlook Calendar.
We have to use below patch method for the same.
In above PATCH method we have tried to edit 2 properties for recurring event shown in red box i.e. remiderMinutesBeforeStart and catergories
remiderMinutesBeforeStart is set to 15 and catergories is set to "Blue category".
So based on our recurring event pattern i.e. daily, weekly, monthly etc. and range we can decides parameters for recurrence property. After performing above PATCH call our calendar was appearing in blue color as shown below and we are getting notification 15 minutes before starting our call.
So as per our requirement we can update this and following instances of a recurring event in Outlook Calendar..
Hope this helps.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".