GET /admin/realms/{realm}/applications/{app-name}/scope-mappings/realmGet list of realm-level roles associated with this client's scope.
- HTTP Example:
GET /admin/realms/{realm}/applications/{app-name}/scope-mappings/realm | - API Example:
ScopeMappedResource.getRealmScopeMappings({'realm': , 'app-name': }); |
- Output:
- List<RoleRepresentation> -
- Produces:
- application/json
|
POST /admin/realms/{realm}/applications/{app-name}/scope-mappings/realmAdd a set of realm-level roles to the client's scope
- HTTP Example:
POST /admin/realms/{realm}/applications/{app-name}/scope-mappings/realm | - API Example:
ScopeMappedResource.addRealmScopeMappings({'realm': , 'app-name': , '$entity': }); |
- Input:
- List<RoleRepresentation>
- Output:
- void
- Consumes:
- application/json
|
DELETE /admin/realms/{realm}/applications/{app-name}/scope-mappings/realmRemove a set of realm-level roles from the client's scope
- HTTP Example:
DELETE /admin/realms/{realm}/applications/{app-name}/scope-mappings/realm | - API Example:
ScopeMappedResource.deleteRealmScopeMappings({'realm': , 'app-name': , '$entity': }); |
- Input:
- List<RoleRepresentation>
- Output:
- void
- Consumes:
- application/json
|