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