Updating a user via Rest API

Hii!
I want to update/change a user details(like name or password) of a existing user via API(postman)

Can any one help me on how to approach this,

Look this, please: Keycloak Admin REST API

Update the user
PUT /{realm}/users/{id}
Set up a new password for the user.
PUT /{realm}/users/{id}/reset-password
1 Like

Thanks for replying,
I had tried this same before
http://localhost:0000/{realm}/users/{id}
but the response was 404 not found

You need to add base path ‘admin/realms/…’

So full path will be http://localhost:0000/admin/realms/{realm}/users/{id}