Skip to end of metadata
Go to start of metadata
You are viewing an old version of this page. View the current version.
Compare with Current
View Page History
Version 1
Next »
As of Version | product version 2021 Summer Alpha1 | component version 1.0 |
---|
Request Method | GET |
---|
Response Format | JSON |
---|
Description | Gets all groups with the assigned roles and members. Required user role: YUUVIS_TENANT_ADMIN Meaning of the response status codes: HTTP Status Code | Meaning |
---|
200 OK | Successful, all roles have been read. | 401 UNAUTHORIZED | The call was unauthorized. |
|
---|
Request Example | GET /tenant-management/api/ admin/groups HTTP/1.1
|
---|
Response Example |
[ { "id": "fa743da4-993a-4076-8cc5-2b4c4bc1c617", "name": "HR-Manager", "realmRoles": [ "EMAIL_WITHOUT_ACL" ], "members": [ "bartonitz" ] }, { "id": "dab01113-3e3a-4e12-95e7-ffd2ed06cff6", "name": "QA-Manager", "realmRoles": [ "QA_MANAGER" ], "members": [ "agnieszka", "bartonitz" ] } ... ]
|
---|