Iam Get User by identity Name
GET/iam/authorizations/users/:identityName
This operation allows to get a IamUser
Request
Path Parameters
identity Name
Responses
- 200
- 401
- 403
- 404
- 500
ok
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
user identity name
user displayed name
user email
user first name
user last name
define if user has root privileges or not
roles
object[]
list of user roles
Possible values: Value must match regular expression [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}
organization UUID associated to user
organization name associated to user
Possible values: Value must match regular expression [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}
list of projects UUIDs associated to user
users permissions
{
"identityName": "string",
"displayName": "string",
"email": "string",
"firstName": "string",
"lastName": "string",
"root": true,
"roles": [
{
"organizationId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"organizationName": "string",
"projectIds": [
"3fa85f64-5717-4562-b3fc-2c963f66afa6"
],
"permissions": [
"string"
]
}
]
}
unauthorized access
- application/json
- Schema
- Example (from schema)
Schema
error code
error message
error description
{
"code": 0,
"message": "string",
"description": "string"
}
forbidden access
- application/json
- Schema
- Example (from schema)
Schema
error code
error message
error description
{
"code": 0,
"message": "string",
"description": "string"
}
not found
- application/json
- Schema
- Example (from schema)
Schema
error code
error message
error description
{
"code": 0,
"message": "string",
"description": "string"
}
internal error
- application/json
- Schema
- Example (from schema)
Schema
error code
error message
error description
{
"code": 0,
"message": "string",
"description": "string"
}