
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
Hi @Anonymous ,
Do you want to create a Trigger within your Customer connector?
The "notificationUrl" property is required to provide a proper server url (which you may need to define by yourself), which could respond to the Subscription validation request.
Please check the following article for more details:
https://docs.microsoft.com/en-us/graph/webhooks#notification-endpoint-validation
Please consider take a try with above solution, then check if the issue is solved.
Best regards,