user2771363
user2771363

Reputation: 113

Microsoft graph calendar api delete instance of recurring event

I have created recurring calendar events through graph API in outlook, however, I am not able to find any way to delete a particular instance of a recurring event through Graph API. I have looked all over the graph API documentation https://learn.microsoft.com/en-us/graph/api/event-delete?view=graph-rest-1.0&tabs=javascript

Let me know is it really possible to update/delete a particular recurring event instance and how.

Thanks!!

Upvotes: 2

Views: 1709

Answers (1)

Guilherme Flores
Guilherme Flores

Reputation: 399

You can get all events from the calendar and use the Id of the instance to delete it, a way to get the specific event is by querying the results or you can use the specific endpoint to list instances:

Send a DELETE request using the following path: https://graph.microsoft.com/v1.0/me/events/{id}

I did some tests using the Graph Explorer and worked, you can try there before start the real development.

Upvotes: 1

Related Questions