'Is there any way to get Graph API event reminder through subscription?

We have multiple reminders like 5 minutes , 15 minutes and 30 minutes. We store them in our own database and send maximum time reminder with graph API create event using c# like 30 mins. Now we want to achieve, on 30 min reminder notification we want our webhook to get hit so we can show reminder to user and update event with snooze reminder of 15 minutes.

Webhook is working fine on creating, updating and deleting of event but reminder time prompt is not hitting our webhook.

Is there any work around to subscribe event reminders ?



Solution 1:[1]

Graph API calendar event resource type inherits from event resource type that has a property reminderMinutesBeforeStart.
You can snooze or dismiss a reminder for user calendars only.
Please refer this MS graph API multiple reminders SO thread for more information.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 SuryasriKamini-MT