I am using the email/password auth from firebase to manage authentication to my angular application. I have created an admin panel to manage the users which based on CRUD to control the users on the app.
So far I have managed to create new users and user their localID to store additional information about that user such as name, age etc. in a real time database
The issue I have run into is when looking at the documentation for the firebase auth api (https://firebase.google.com/docs/reference/rest/auth#section-create-email-password) it refers to using the IdToken which is created when the current user if logged in. I want to be able to edit/delete a different user to the one that is currently logged in but I am unable to find anything in the documentation relating to this?
Any help is much appreciated if I am looking in the wrong place or any work around if not possible?