Hi!
I’m using keycloak as user storage so I have to be able to create new users using rest api from my frontend app.
I guess I have to use POST /{realm}/users endpoint to create new user.
The thing is I must get sms confirmation for each registration request.
I found out the “registration flow” bases on keycloak web-forms approach and doesn’t work for registration endpoint - so I cannot use it.
What should I do to customize registration api?
Thanks for any feedback!