info

Available Since: V1

Get the information on a user. 

Request

GET api/1/user/info/
Parameter Description
uid The ID of the user to get the information on.

Successful Response (200)

{
	"username": "theuser",
	"displayname": "Display Name",
	"email": "user@example.com",
	"tz": "Australia/Perth",
	"added": "2013-04-09 03:34:27",
	"lastaccess": "0000-00-00 00:00:00",
	"state": "active"
}
Parameter Description
username The username of the user.
displayname The display name for the user.
email The users email address.
tz The users timezone.
added When the user was added to the system.
lastaccess When the user last accessed the system.
state The state of the user, one of:  'active', 'disabled', 'pending' or 'blocked'.

Unsuccessful Response (404)

Returned if the user could not be found in the system.

{
    "result": false
}



TOP