13,724 questions
Here are the steps to modify a single occurrence of a recurring meeting using Graph Api
- First, use this endpoint to get the event-id of the recurring event:
GET /me/calendar/events
- Then, use this endpoint to get the instances (occurrences) of the event for a specific time range
GET /me/events/{id}/instances?startDateTime={start_datetime}&endDateTime={end_datetime}
- and copy the id from the event-id (instance-id) in the response that you want to edit.
- Finally, use this endpoint with the request body as an example to update the occurrence of the event.
PATCH https://graph.microsoft.com/v1.0/me/events/{id}
Content-type: application/json
{
"dateTime": "2024-04-13T12:00:00",
"timeZone": "Pacific Standard Time"
},
}
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have further questions about this answer, please click "Comment".