Is there an API call for changing user password on keycloak?

you can use PUT /auth/admin/realms/{realm}/users/{id}/reset-password

  • {id} is the user id in keycloak (not the login)

Here is s sample body.


{ "type": "password", "temporary": false, "value": "my-new-password" }

Leave a Comment