Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Page Properties
hiddentrue
idrDOC

Product Version2021 Autumn
Report Notedraft
AssigneeMartin

Resources & Remarks

  • Version 2.4 - options" ...  "synchronousContentAnalysis": true (OKTO-4309)

Modification History

NameDateProduct VersionAction
Martin31 May 20212021 AutumnCreated


...

As of Versionproduct version 2021 Autumn (Alpha1) | component version 1.0
Request MethodPOST
Response FormatJSON
Description


Excerpt
Creates a new group with the given properties for the specified tenant.


Required user role: YUUVIS_SYSTEM_INTEGRATOR

The properties for the new group are passed in JSON format. In the response, the group ID is returned again in JSON format.

The only required parameter is name for the group name. If roles should be assigned the given realmRoles must exist.

Meaning of the response status codes:


HTTP Status CodeMeaning
201 CREATEDSuccessful, the user has been created with the specified properties.
401 UNAUTHORIZEDThe call was unauthorized.


Request Example

Will be introduced with the Release Candidate with the tag todo.

Panel

POST /tenant-management/api/system/tenants/{mytenant}/groups HTTP/1.1

{
"name": "QA",
"realmRoles": [
"QUALITY_MANAGER",
"CUSTOM_ROLE"
]
}


Response Example


Panel

{
  "id": "a00a0bb1-1234-5c66-7890-00fbb1c1a222"
}