CDS: How to receive notifications when a user gets added to/removed from the AD group team

By | June 28, 2020

AD group teams are not managed exactly the same way “native” teams are managed in CDS, and one difference seems to be that associate/disassociate events will not be triggered for such teams.

However, this does not mean there is no way to respond to a change in the group membership, it just has to be done differently. Quite differently, actually.

With a security group in Azure, we can use graph API to subscribe to various notifications:

image

Why us there an Azure Function on this diagram? This is because, when creating a subscription, we need to use a webhook that responds in a certain way to the initial validation request (as per the link above):

The client must provide a response with the following characteristics within 10 seconds:

  • A 200 (OK) status code.
  • The content type must be text/plain.
  • The body must include the validation token provided by Microsoft Graph

Not sure if this would be doable with the Flow only, so, instead, there is an Azure Function and a Flow.

To start with, you will need an HTTP trigger azure function. You’ll find the one I used for this post on github here:

https://github.com/ashlega/ItAintBoring.Integrations

Before you deploy it in Azure, make sure to update FlowUrl variable – it should be pointing to your own Flow:

image

Which means you will need to create a Flow first.

Here is how my Flow looks like:

image

There is no JSON parsing in the HTTP request, since I wanted to make sure I see what’s coming in even if the parsing fails. Instead, there is a Parse JSON action.

You can use the payload sample below to generate schema for that action:

{“value”:[{“changeType”:”updated”,”clientState”:”SecretClientState”,”resource”:”Groups/3826e824-6ba7-4279-9e48-86ab17dbfec0″,”resourceData”:{“@odata.type”:”#Microsoft.Graph.Group”,”@odata.id”:”Groups/3826e824-6ba7-4279-9e48-86ab17dbfec0″,”id”:”3826e824-6ba7-4279-9e48-86ab17dbfec0″,”organizationId”:”ee810a5c-034a-47b1-926d-c745ecaf201b”,”sequenceNumber”:637287710486850891,”members@delta”:[{“id”:”43d6f1b0-7706-4271-af1f-b6067188d632″,”@removed”:”deleted”},{“id”:”d322c1fa-4efb-4fc1-824d-64954e63cf0d”}]},”subscriptionExpirationDateTime”:”2020-06-27T11:00:00+00:00″,”subscriptionId”:”8a12a7fc-018c-4b5d-95ee-16ca667e1cc9″,”tenantId”:”ee810a5c-034a-47b1-926d-c745ecaf201b”}]}

The interesting part about this payload is that Graph notifications are cumulative. For those users which were removed from the AD group, you’ll see “@removed”:”deleted”. For the users added to the group, you won’t have that flag.

For the loop, here is what I did:

image

That “Condition” in the middle is looking at whether “@removed” flag is present in the array element:

contains(items(‘Apply_to_each_4’), ‘@removed’)

If it’s there, the user has been removed. If it’s not there, the user has been added.

How do we match AD user to the CDS user, though?

This is what “List records” action will be doing:

image

Keeping in mind the json payload sample above, it just need to use the following expression for the “id” parameters:

items(‘Apply_to_each_4’)[‘id’]

That’s it for the Flow – once you’ve created it, you will have a url you can, then, add to the Azure Function so it knows how to call the Flow.

The function will just read request body (which is the original notification payload), and it will forward it to the Flow:

image

Now, once the function has been updated to have correct Flow url, you can deploy it in Azure.

And what’s left is to actually set up Graph notification.

There is a graph explorer tool you can use to work with Graph API:

https://developer.microsoft.com/en-us/graph/graph-explorer

In order to register the subscription, you’ll need to send this kind of request:

image

There are a few things to keep in mind there.

For the resource url, you’ll need to use active directory ID of the group you want to start getting notifications for.

For the notificaiton url, you will need to use the url of your Azure Function

Expiration date time can’t be set too far in the future (I think it can only be as far as 48 hours ahead). One piece of the puzzle which I am not describing in this post is how to renew those subscriptions automatically. That’s another request to the graph API, and it can be done with Flows, too, but you’ll need to set up an application in azure, grant permissions, then use HTTP request with OAuth etc.

Anyway, once the notification is there, you might try adding/removing users to/from the Azure group, and, as a result, you should see your Flow responding to the notifications. In the example below, I’ve removed one user from the group:

image

And I’ve also added another user to the same group. Both changed were packaged into a single notification, so there was one Flow call with two array elements in the json payload, and here is the second one of those two:

image

Hope this helps!

2 thoughts on “CDS: How to receive notifications when a user gets added to/removed from the AD group team

  1. Guus

    Hi Alex. Why should you build your own function when you can also use the (LogicApps) Office 365 Groups connector? This connector polls every X minute to a specific AD group for add’s or delete’s to the group. Much easier to build the total flow 🙂

    Reply
    1. Alex Shlega Post author

      Hi Guus,

      so… to start with, I did not know there is a connector that can do some of what I wanted to do:) Although, I tried it quickly now, and, it seems, it does not work for the AAD security groups, so this would cover half of the “external” teams in CDS(AAD office group-based), but, for the other half (AAD security group-based), you may still need something else. Whereas the function / graph API approach will work for both types of groups. Absolutely no argument it would be easier to use Office 365 Groups connector if you only wanted to work with the Office groups (unless I’m missing something and that connector can work with the security groups, too).

      Reply

Leave a Reply

Your email address will not be published. Required fields are marked *