get /users/{id}
Gets a specified user.
Returns the user specified by the id
parameter.
Path parameters
- id (required)
- The ID of the user to return.
Return type
Example data
Content-Type: application/json
{
"data" : {
"domainAccount" : "aeiou",
"subFolder" : "aeiou",
"folder" : "aeiou",
"created" : "2000-01-23T04:56:07.000+00:00",
"timezone" : "aeiou",
"lastUpdate" : "2000-01-23T04:56:07.000+00:00",
"id" : "00000000-0000-0000-0000-000000000000",
"userName" : "aeiou",
"locale" : "de",
"email" : "aeiou",
"enabled" : true
}
}
Responses
- 200
- Success. Details about the specified user are returned.
- 400
- The id parameter is malformed.
- 404
- The specified user was not found.