Is it possible to get push notifications when a Teams Meeting started?

Cesar Agena 6 Reputation points
2022-11-23T11:55:26.15+00:00

I am building an Android app that integrates MS Teams meetings using the Azure Communication Service.
I would like to receive push notification when a meeting, in which the user was previously invited, is started.
Does anyone know if it is possible?

Azure Notification Hubs
Azure Notification Hubs
An Azure service that is used to send push notifications to all major platforms from the cloud or on-premises environments.
266 questions
Azure Communication Services
Azure Communication Services
An Azure communication platform for deploying applications across devices and platforms.
699 questions
Microsoft Graph
Microsoft Graph
A Microsoft programmability model that exposes REST APIs and client libraries to access data on Microsoft 365 services.
10,743 questions
Microsoft Entra ID
Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
19,698 questions
0 comments No comments
{count} vote

1 answer

Sort by: Most helpful
  1. Tom Kaupe - MSFT 6 Reputation points Microsoft Employee
    2022-12-01T00:12:18.04+00:00

    You cannot receive a push notification directly from Teams/ACS, but you can get a webhook notification sent to your service, which can in turn send the push notification to your app.

    You can use Graph API to subscribe to receive webhook notifications for various events related to an online meeting (started, participant join/leave, end).
    https://learn.microsoft.com/en-us/graph/webhooks?view=graph-rest-1.0
    https://learn.microsoft.com/en-us/graph/api/subscription-post-subscriptions?view=graph-rest-beta&tabs=http

    1 person found this answer helpful.