An API that connects multiple Microsoft services, enabling data access and automation across platforms
Hi Nestor Wilke,
Thank you for reaching out.
I believe you are l referring to change notifications for teams and channels through Graph API, https://learn.microsoft.com/en-us/graph/teams-changenotifications-team-and-channel, You can get notified whenever a team or channel is created, updated, or deleted.
Here is the reference KP article,https://learn.microsoft.com/en-us/graph/teams-changenotifications-team-and-channel,
Here is the corresponding JAVA method;-
GraphServiceClient graphClient = GraphServiceClient.builder().authenticationProvider( authProvider ).buildClient();
SubscriptionCollectionPage subscriptions = graphClient.subscriptions()
.buildRequest()
.get();
Adding the Java apps tutorial link as well; - https://learn.microsoft.com/en-us/graph/tutorials/java?tabs=aad
Let me know if that answers your question.
Thanks.