Difference between Last login and Last login TimeIssue <!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: #000000; } span { font-size: 12pt; font-family: Lato; color: #000000; } h2 { font-size: 24pt; font-family: Lato; color: black; } h3 { font-size: 18pt; font-family: Lato; color: black; } h4 { font-size: 14pt; font-family: Lato; color: black; } a { font-size: 12pt; font-family: Lato; color: #00718F; } a:hover { font-size: 12pt; color: #024F69; } a:target { font-size: 12pt; color: #032D42; } a:visited { font-size: 12pt; color: #00718f; } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: block; max-width: ; width: auto; height: auto; } } We want to understand the difference between the Last Login and Last Login Time fields on the user account Release<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: #000000; } span { font-size: 12pt; font-family: Lato; color: #000000; } h2 { font-size: 24pt; font-family: Lato; color: black; } h3 { font-size: 18pt; font-family: Lato; color: black; } h4 { font-size: 14pt; font-family: Lato; color: black; } a { font-size: 12pt; font-family: Lato; color: #00718F; } a:hover { font-size: 12pt; color: #024F69; } a:target { font-size: 12pt; color: #032D42; } a:visited { font-size: 12pt; color: #00718f; } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: block; max-width: ; width: auto; height: auto; } } Xanadu Onwards Resolution<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: #000000; } span { font-size: 12pt; font-family: Lato; color: #000000; } h2 { font-size: 24pt; font-family: Lato; color: black; } h3 { font-size: 18pt; font-family: Lato; color: black; } h4 { font-size: 14pt; font-family: Lato; color: black; } a { font-size: 12pt; font-family: Lato; color: #00718F; } a:hover { font-size: 12pt; color: #024F69; } a:target { font-size: 12pt; color: #032D42; } a:visited { font-size: 12pt; color: #00718f; } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: block; max-width: ; width: auto; height: auto; } } The "Last login" field on the sys_user table shows only the date of the user's most recent successful login, whereas the "Last login time" field provides the full timestamp, including both the date and exact time the login occurred.Last Login : This field is updated whenever a user successfully logs in and a Login event is generated. ServiceNow retains login history records for up to 30 days by default. To view historical login information, you can use the sys_user_login_history table, which provides a detailed log of user login activity.URL : https://<instance_name>.service-now.com/sys_user_login_history_list.do?sysparm_clear_stack=true Last Login time :If a user is trying to access instance via API or interactive, the Last login time(last_login_time) will get updated.We have a field on the sys_user record called -Last Login Time , which gives the corresponding user's latest login time.Field Name : Last Login TimeEg : <last_login_time>2025-01-04 14:15:30</last_login_time>For interactive/UI login flows "Last login time" script action is the one which is going to populate the last_login_time field for the user record , once the user logs in. Last login time script action URL , which is triggered every time a user logs in and this captures the - Last Login time.https://<instance_name>service-now.com/nav_to.do?uri=sysevent_script_action.do?sys_id=8e93ed730a05001301dec5cd65369e9e For API flows, the "Last login time" is updated via Java code in-platform, and only updated at most once per minute. Controlling Last Login Time Updates for API calls The update behavior of the last_login_time field for API calls is governed by the system property: glide.basicauth.update_last_login_time and glide.oauth.update_last_login_time properties. If both properties are set to false, the "Last Login Time" field will not be updated for API calls. Related Links<!-- /*NS Branding Styles*/ --> .ns-kb-css-body-editor-container { p { font-size: 12pt; font-family: Lato; color: #000000; } span { font-size: 12pt; font-family: Lato; color: #000000; } h2 { font-size: 24pt; font-family: Lato; color: black; } h3 { font-size: 18pt; font-family: Lato; color: black; } h4 { font-size: 14pt; font-family: Lato; color: black; } a { font-size: 12pt; font-family: Lato; color: #00718F; } a:hover { font-size: 12pt; color: #024F69; } a:target { font-size: 12pt; color: #032D42; } a:visited { font-size: 12pt; color: #00718f; } ul { font-size: 12pt; font-family: Lato; } li { font-size: 12pt; font-family: Lato; } img { display: block; max-width: ; width: auto; height: auto; } } KB0749704 - What is the "Last login time" in the user table