You can create an event subscription for your users, and you will receive notifications when your users create new calendar meetings.
POST https://graph.microsoft.com/v1.0/subscriptions
Content-type: application/json
{
"changeType": "created",
"notificationUrl": "https://webhook.azurewebsites.net/api/send/myNotifyClient",
"resource": "users/{id}/events",
"expirationDateTime":"2023-12-20T18:23:45.9356913Z"
}
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.