Versions Compared

Key

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



Page Properties
hiddentrue
idrDOC

Product Version2021 Autumn
Report Note
AssigneeMartin

Resources & Remarks

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

Modification History

NameDateProduct VersionAction
Martin31 May 20212021 AutumnCreated
Antje04 JUN 20212021 Autumnpublished



Will be introduced with the Release Candidate with the tag todo.
As of Versionproduct version 2021 Autumn (Alpha1) | component version 1.0
Request MethodPOST
Response FormatJSON
Required Permission

Available if listed in authorization.accesses in authentication-prod.yml and the specified access condition is matched. In the default configuration, access is granted via the YUUVIS_SYSTEM_INTEGRATOR role.

>> AUTHENTICATION Service
Description


Excerpt
Creates a new role for the specified tenant with the given properties for the specified tenant.
Required user role: YUUVIS_SYSTEM_INTEGRATOR
specified in JSON format in the request body.


The properties for the new role are passed in JSON format.

The only required parameters are name for the role and its description.

Meaning of the response status codes:


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


Request Example


Panel

POST /tenant-management/api/sysstemsystem/tenants/mytenant/roles HTTP/1.1

{
"description": "This is a new role",
"name": "MY_NEW_ROLE"
}


Response Example


Panel
{
"errors": [],
"valid": true
}


...