
AndrewB.51454 (Customer) asked a question.
I am creating a new Okta app integration for my Single Page App and I'm using OIDC. (following this tutorial: https://firebase.googleblog.com/2020/08/authenticate-with-firebase-using-okta.html).
I need a way to know when an Okta user that has been using my service through the app integration has my app removed (i.e. their access to my app is removed for any reason) so that I can remove their data on my end and perform other cleanup tasks.
Is there some way to configure a webhook on an event like "User of your app was removed" and have this work for all tenants that use my app (I intend to publish it).

Hello Andrew
You can write an Event Hook for this. You need to subscribe for the Event "User de-provisioned from the App". so whenever the user will be de-provisioned from the application okta will execute that Event Hook & trigger a notification to the Admin. You just need to write the business logic of your Event Hook & Okta will trigger that when the specific event occurs.
I hope it helps.