GET /admin/realms/{realm}/roles-by-id/{role-id}Get a specific role's representation
- HTTP Example:
GET /admin/realms/{realm}/roles-by-id/{role-id} | - API Example:
RoleByIdResource.getRole({'realm': , 'role-id': }); |
- Output:
- RoleRepresentation -
- Produces:
- application/json
|
DELETE /admin/realms/{realm}/roles-by-id/{role-id}Delete this role
- HTTP Example:
DELETE /admin/realms/{realm}/roles-by-id/{role-id} | - API Example:
RoleByIdResource.deleteRole({'realm': , 'role-id': }); |
- Output:
- void
|
PUT /admin/realms/{realm}/roles-by-id/{role-id}Update this role
- HTTP Example:
PUT /admin/realms/{realm}/roles-by-id/{role-id} | - API Example:
RoleByIdResource.updateRole({'realm': , 'role-id': , '$entity': }); |
- Input:
- RoleRepresentation
- Output:
- void
- Consumes:
- application/json
|