Getting Events from Keycloak Admin Server

I am trying to notify a custom python server that a user, role, or group has changed in the Keycloak admin server. Essentially I need an event with that information. Is this possible with Keycloak?

As long as it is an event that keycloak produces, you can send it to an external server using a custom event listener.

The HTTP sender or Webhooks in this extension would be a way to handle that:

1 Like

Thanks. I will look into it.