Hi @Maciej
You can use JSON batching to delete multiple recurring instances at once, and you only need to send one API call.
POST https://graph.microsoft.com/v1.0/$batch
Accept: application/json
Content-Type: application/json
{
"requests": [
{
"id": "1",
"method": "DELETE",
"url": "/me/events/{id}"
},
{
"id": "2",
"method": "DELETE",
"url": "/me/events/{id}"
},
......
{
"id": "20",
"method": "DELETE",
"url": "/me/events/{id}"
}
]
}
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.