Linked Questions

Popular Questions

I am trying to update users info in Keycloak, I was able to update the user using id provided in the keycloak.

I tried with this endpoint and i was able to update using id

 PUT /admin/realms/{realm}/users/{id}

Is there any way by which i can update the same user using the email-id as this is also a unique field? i tried replacing {id} with email-id of user but that gave me a error. Is there any way by which i can update the user using email-id or any other unique field of user

Related Questions