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

« Previous Version 2 Next »

As of Versionproduct version 2020 Winter | component version 1.0
Request MethodGET
Response FormatJSON
Description

Gets all groups of the specified tenant with the assigned roles and members.


Required user role: YUUVIS_SYSTEM_INTEGRATOR

Meaning of the response status codes:
HTTP Status CodeMeaning
200 OKSuccessful, all roles of the specified tenant have been read.
401 UNAUTHORIZEDThe call was unauthorized.
Request Example

GET /tenant-management/api/system/tenants/myTenant/groups HTTP/1.1

Result 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"
   ]
  }
...
]

{
  • No labels