PUT /admin/realms/{realm}/users/{username}Update the user
- HTTP Example:
PUT /admin/realms/{realm}/users/{username} | - API Example:
UsersResource.updateUser({'realm': , 'username': , '$entity': }); |
- Input:
- UserRepresentation
- Output:
- Response -
- Consumes:
- application/json
|
GET /admin/realms/{realm}/users/{username}Get represenation of the user
- HTTP Example:
GET /admin/realms/{realm}/users/{username} | - API Example:
UsersResource.getUser({'realm': , 'username': }); |
- Output:
- UserRepresentation -
- Produces:
- application/json
|
DELETE /admin/realms/{realm}/users/{username}delete this user
- HTTP Example:
DELETE /admin/realms/{realm}/users/{username} | - API Example:
UsersResource.deleteUser({'realm': , 'username': }); |
- Output:
- Response
|