Details
-
Type:
Suggestion
-
Status: Gathering Interest (View Workflow)
-
Resolution: Unresolved
-
Fix Version/s: None
-
Component/s: REST API
-
Labels:
-
UIS:63
-
Support reference count:10
-
Feedback Policy:
Description
NOTE: This suggestion is for JIRA Server. Using JIRA Cloud? See the corresponding suggestion.
To help with administration, it'd be helpful to have the lastLogin property of a user exposed through the REST interface.
Example, when calling /rest/api/2/user?username, the response would include lastLogin:
{
"self": "http://www.example.com/jira/rest/api/2/user?username=fred",
"name": "fred",
"emailAddress": "fred@example.com",
"avatarUrls":
,
"displayName": "Fred F. User",
"active": true,
"timeZone": "Australia/Sydney",
"lastLogin": "2011-07-05T11:05:00.000+0000"
"groups": {
"size": 3,
"items": [
,
,
{ "name": "important", "self": "http://www.example.com/jira/rest/api/2/group?groupname=important" } ]
},
"expand": "groups"
}