Skip to main content
Version: 7.9

system.security.logout

This function is used in Python Scripting.

Description​

Logs out of the client for the current user and brings the client to the login screen.

Client Permission Restrictions​

This scripting function has no Client Permission restrictions.

Syntax​

system.security.logout()

Parameters​

None

Returns​

Nothing

Scope​

All

Code Examples​

Example #1
# This would run in a timer script to log the user out after 30 seconds of inactivity.
if system.util.getInactivitySeconds() > 30:
system.security.logout()