Get User Details
Get details of a User based on id
Path Parameters
- userId int32 required
Id of the User whose details have to be fetched
Header Parameters
- mode
Possible values: [
EdgeMode
]
- 200
- 404
Success
- application/json
- Schema
- Example (from schema)
Schema
- id int32
- name string
- GUID string
- fullName string
- email string
- enabled boolean
lockInfo object
isLocked booleanReturns if the user is locked or unlocked.
startTime int32If the user is locked, it returns user lock start time in unix time format.
endTime int32If the user is locked, it returns user lock end time in unix time format.
- description string
- serviceType string
Possible values: [
UNKNOWN
,COMMSERVE
,ACTIVE_DIRECTORY
,DOMINO_DIRECTORTY_SERVICE
,HOSTED_EXCHANGE
,ORGANIZATIONS
,DUMMY_DOMAIN
]The values that are returned by serviceType are- 0(unknown),1(commserver users),2(Active directory users),3(domino directory service users),4(hosted exchange users),5(company users),12(dummy domain users)
- lastLoggedIn int64
Returns the most recent time the user was logged in. It is provided in unix format.
company object
id int32name stringplan object
id int32name string- authenticationMethod string
Specifies authentication method used by user. Default value is Commcell.
authenticationMethodServer object
id int32name stringcompany object
id int32name stringassociatedUserGroups object[]
id int32name stringprovider object
id int32name string- userPrincipalName string
{
"id": 0,
"name": "string",
"GUID": "string",
"fullName": "string",
"email": "string",
"enabled": true,
"lockInfo": {
"isLocked": true,
"startTime": 0,
"endTime": 0
},
"description": "string",
"serviceType": "UNKNOWN",
"lastLoggedIn": 0,
"company": {
"id": 0,
"name": "string"
},
"plan": {
"id": 0,
"name": "string"
},
"authenticationMethod": "string",
"authenticationMethodServer": {
"id": 0,
"name": "string",
"company": {
"id": 0,
"name": "string"
}
},
"associatedUserGroups": [
{
"id": 0,
"name": "string",
"provider": {
"id": 0,
"name": "string"
}
}
],
"userPrincipalName": "string"
}
Requested Details not found