GET /admin/realms/{realm}/oauth-clients/{clientId}/scope-mappings/applications/{app}Get the roles associated with a client's scope for a specific application.
- HTTP Example:
GET /admin/realms/{realm}/oauth-clients/{clientId}/scope-mappings/applications/{app} - Output:
- List<RoleRepresentation> -
- Produces:
- application/json
|
POST /admin/realms/{realm}/oauth-clients/{clientId}/scope-mappings/applications/{app}Add application-level roles to the client's scope
- HTTP Example:
POST /admin/realms/{realm}/oauth-clients/{clientId}/scope-mappings/applications/{app} - Input:
- List<RoleRepresentation>
- Output:
- void
- Consumes:
- application/json
|
DELETE /admin/realms/{realm}/oauth-clients/{clientId}/scope-mappings/applications/{app}Remove application-level roles from the client's scope.
- HTTP Example:
DELETE /admin/realms/{realm}/oauth-clients/{clientId}/scope-mappings/applications/{app} - Input:
- List<RoleRepresentation>
- Output:
- void
- Consumes:
- application/json
|