GET /admin/realms/{realm}/applications-by-id/{app-name}/scope-mappings/applications-by-id/{appId}Get the roles associated with a client's scope for a specific application.
- HTTP Example:
GET /admin/realms/{realm}/applications-by-id/{app-name}/scope-mappings/applications-by-id/{appId} | - API Example:
ScopeMappedApplicationResource.getApplicationScopeMappings({'realm': , 'app-name': , 'appId': …}); |
- Output:
- List<RoleRepresentation> -
- Produces:
- application/json
|
POST /admin/realms/{realm}/applications-by-id/{app-name}/scope-mappings/applications-by-id/{appId}Add application-level roles to the client's scope
- HTTP Example:
POST /admin/realms/{realm}/applications-by-id/{app-name}/scope-mappings/applications-by-id/{appId} | - API Example:
ScopeMappedApplicationResource.addApplicationScopeMapping({'realm': , 'app-name': , 'appId': …, '$entity': }); |
- Input:
- List<RoleRepresentation>
- Output:
- void
- Consumes:
- application/json
|
DELETE /admin/realms/{realm}/applications-by-id/{app-name}/scope-mappings/applications-by-id/{appId}Remove application-level roles from the client's scope.
- HTTP Example:
DELETE /admin/realms/{realm}/applications-by-id/{app-name}/scope-mappings/applications-by-id/{appId} | - API Example:
ScopeMappedApplicationResource.deleteApplicationScopeMapping({'realm': , 'app-name': , 'appId': …, '$entity': }); |
- Input:
- List<RoleRepresentation>
- Output:
- void
- Consumes:
- application/json
|