Outlook
A family of Microsoft email and calendar products.
4,081 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
how to update multiple instances of a recurring event in Outlook with one api call?
update all future occurrences of the event.
Hello cy,
Thank you for contacting Microsoft Support!
To update all future occurrences of a recurring event in Outlook using the Microsoft Graph API, you can follow these steps:
GET /me/events/{id}
endpoint to fetch the event details.recurrence
property in your PATCH request. Here's an example of how to structure your request:
PATCH https://graph.microsoft.com/v1.0/me/events/{id}
Content-type: application/json
{
"recurrence": {
"pattern": {
"type": "daily",
"interval": 1
},
"range": {
"type": "endDate",
"startDate": "2024-11-18",
"endDate": "2025-11-18"
}
},
"subject": "Updated Event Subject",
"body": {
"contentType": "HTML",
"content": "Updated event details"
}
}
PATCH /me/events/{id}
endpoint for each instance.Hope this helps.
If the answer is helpful, please click Accept Answer and kindly upvote it. If you have any further questions about this answer, please click Comment.