I am trying to implement my own form for changing a user's password. I tried to find an API for changing a user's password in Keycloak but I couldn't find anything in the documentation. Is there an API for doing it?
you can use PUT /auth/admin/realms/{realm}/users/{id}/reset-password
Here is s sample body.
{ "type": "password", "temporary": false, "value": "my-new-password" }