Versions Compared

Key

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



Statusstatus
Page Properties
hiddentrue
id
DONE

colourYellow
titleDraft
Priority1
Product Version
Report Note
AssigneeMartin
Bartonitz

Ressources

Resources & Remarks

History

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

Modification History

NameDateProduct VersionAction
Antje08 FEB 20212.4New page properties macro.
Antje14 JUL 20222022 Autumnadd default role YUUVIS_MANAGE_SETTINGS



Get
As of Versionproduct version 2020 Winter | component version 1.0
Request MethodGET
Response FormatJSON
Required PermissionDescription

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_TENANT_ADMIN and YUUVIS_MANAGE_SETTINGS (as of 2022 Autumn) roles.

>> AUTHENTICATION Service
Description


Excerpt
Retrieves the data of the user
with
specified by id.
 


Required: user with role YUUVIS_TENANT_ADMINResponse HTTP status codes:

HTTP Status CodeMeaning
200 OKSuccessful, the data of the specified user of the specified tenant has been read.
401 UNAUTHORIZEDThe call was unauthorized.
404 NOT FOUNDThe user specified by id was not found.



Request Example

GET GET /tenant-management/api-tm/admin/users/a69a0eb6-3662-4c00-8096-38fbb2c4a922 HTTP/1.1

Result Example


Code Block
panel
languageyml
{


  "id": "a69a0eb6-3662-4c00-8096-38fbb2c4a922",


  "email": "
bartonitz@optimal-systems
firstexample@exampleprovider.de"

,
  "userName":
:
 "
bartonitz
mrexample",

,

  "firstName": "Examplename",
  "lastName": "
Martin
Examplesurname",

,

  "
lastName
roles": ["role1","role2"],
  "groups":
"Bartonitz",
 
 ["group3","group1"],
  "enabled": true,


  "createdTimestamp": 1555069963564

}
{
Meaning of the response status codes:

200 OK

The data of the users with id been read

401 UNAUTHORIZED

The call was unauthorized

404 NOT FOUND

The user with the id was not found

}