Greetings,
I am trying to create a Trigger in "Custom connector" to listen for security group changes in AD
Took this article as a bas guide .
So to register a webhook I want to call below request and I'm strugling to understed what should be "notificationUrl"
POST https://graph.microsoft.com/v1.0/subscriptions
{
"changeType": "updated",
"notificationUrl": "https://example.com",
"resource": "/groups/{id}/members",
"expirationDateTime":"2019-09-14T00:01:01.9356913Z",
"clientState": "secretClientValue"
}
Thanks
I am also trying to get it working. Let me know if you have found any solution?
Thank you for your explanation, but could you please provide an exmplanation of what should be "notificationURL" when I set up a trgger in my custom connector? How to determine notificationURL for my case?
Hi @Anonymous
The Microsoft Graph API uses a webhook mechanism to deliver notifications to clients. A client is a web service that configures its own URL to receive notifications. Client apps use notifications to update their state upon changes.
You could refer to this document for more details on how to use it.
https://docs.microsoft.com/en-us/graph/webhooks
Best Regards,
Community Support Team _ Lin Tu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.