Hi Tichy, Jakub
I created a recurring event with a duration of 30 minutes using me/events (POST)
Could you please confirm if the request body has been added correctly?
here I added sample request.
{
"subject": "Daily Standup Meeting",
"body": {
"contentType": "Text",
"content": "Quick update on daily tasks"
},
"start": {
"dateTime": "2024-03-05T09:00:00",
"timeZone": "UTC"
},
"end": {
"dateTime": "2024-03-05T09:30:00",
"timeZone": "UTC"
},
"recurrence": {
"pattern": {
"type": "daily",
"interval": 1
},
"range": {
"type": "endDate",
"startDate": "2024-03-05",
"endDate": "2024-06-01"
}
}
}
for more details, check the documentation https://learn.microsoft.com/en-us/graph/api/user-post-events?view=graph-rest-1.0&tabs=http#example-3-create-a-recurring-event
I hope this helps. If the reply is helpful, please click Accept Answer and kindly upvote it. If you have additional questions about this answer, please click Comment.