Reputation: 3341
We're building some integrations with Google Workspace, and I'd like our system to be notified whenever a user/group changes in Google Workspace (user added, user added to group, etc).
I'm looking for something that can notify a webhook or similar about these changes, so I don't have to poll on a schedule.
So far the only thing I've found is the Admin Api's watch
endpoint but that requires a known singular user. I'm looking for a way to get notified on any user/group changes in our directory
Any pointers to where I should look would be deeply appreciated!
Upvotes: 0
Views: 766
Reputation: 3341
For anyone else trying to figure this out, it turns out that its possible to do it like this:
Upvotes: 3