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
Version 1
Current »
As of Version | product version 2020 Winter | component version 1.0 |
---|
Request Method | GET |
---|
Response Format | JSON |
---|
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_TENANT_ADMIN and YUUVIS_MANAGE_SETTINGS (as of 2022 Autumn) roles. >> AUTHENTICATION Service |
---|
Description | Retrieves the data of the user specified by id . Response HTTP status codes: HTTP Status Code | Meaning |
---|
200 OK | Successful, the data of the specified user of the specified tenant has been read. | 401 UNAUTHORIZED | The call was unauthorized. | 404 NOT FOUND | The user specified by id was not found. |
|
---|
Request Example | GET /tenant-management/api/ admin/users/a69a0eb6-3662-4c00-8096-38fbb2c4a922 HTTP/1.1
|
---|
Result Example |
[{
"id": "a69a0eb6-3662-4c00-8096-38fbb2c4a922",
"email": "firstexample@exampleprovider.de",
"userName": "mrexample",
"firstName": "Examplename",
"lastName": "Examplesurname",
"roles": ["role1","role2"],
"groups": ["group3","group1"],
"enabled": true,
"createdTimestamp": 1555069963564
}]
|
---|