Versions Compared

Key

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


Page Properties
hiddentrue
idrDOC

Product Version
Report Note
AssigneeMartin

Resources & Remarks

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

Modification History

NameDateProduct VersionAction
Antje08 FEB 20212.4New page properties macro.
Antje12 FEB 20212020 WinterrDOC
Antje04 JUN 20212021 Autumngroups added

Martin: zur Version 2021 Autumn wird ein Fehler ausgegeben, wenn über diese API die Rolle YUUVIS_SYSTEM_INTEGRATOR zugewiesen wird. Diese Funktion ist auch für PUT group implementiert worden.


As of Versionproduct version 2020 Winter | component version 1.0
Request MethodPUT
Response FormatHTTP status code
Description


Excerpt
Updates the data of the user specified by id.


Required user role: YUUVIS_TENANT_ADMIN

Meaning of the response status codes:


HTTP Status CodeMeaning
200 OKSuccessful, the data for the specified user have been updated.
401 UNAUTHORIZEDThe call was unauthorized.
409 CONFLICT

At least one of the following situations occurred:

  • The username is not unique.
  • The email address is not unique.
  • The email address or password must be set.
  • The role {ROLE_NAME} was not found.
  • The group {GROUP_NAME} was not found.


Request Example

PUT /tenant-management/api/admin/users/a99a0bb1-2345-6c77-8901-22dee3f4a567 HTTP/1.1

Code Block
languageyml
{
  "email": "example@exampleprovider.de",
  "userName": "mrexample",
  "firstName": "Examplename",
  "lastName": "Examplesurname",
  "roles": ["role1","role2"],
  "groups": ["mygroup","specialgroup","group2"],
  "enabled": true,
  "createdTimestamp": 1555069963564
}


Response Example

200 OK

no response body

...