Reference Guide

Table Of Contents
/api/SessionService/Actions/
SessionService.SessionConfigurationUpdate
POST method for SessionService.SessionConfigurationUpdate
Description This method adds the ability to configure the inactivity (not active sessions) timeout interval and the
maximum number of sessions that are enabled per session type. When these properties are changed, the
properties of the current active sessions are not terminated or modified.
Privilege VIEW
HTTP response
codes
200
Example request
body
[
{
"SessionType": "GUI",
"MaxSessions": 6,
"SessionTimeout": 1800000
},
{
"SessionType": "API",
"MaxSessions": 100,
"SessionTimeout": 1800000
},
{
"SessionType": "SSH",
"MaxSessions": 4,
"SessionTimeout": 1800000
},
{
"SessionType": "UniversalTimeout",
"MaxSessions": 0,
"SessionTimeout": -1
},
{
"SessionType": "QuickSync",
"MaxSessions": 8,
"SessionTimeout": 86400000
},
{
"SessionType": "Serial",
"MaxSessions": 4,
"SessionTimeout": 1800000
}
]
/api/SessionService/Actions/SessionService.Logoff
This URI logs off your current session.
POST method for session service log off
This method log off the current session of the user.
Description
Logs off the current session of the user.
Privilege VIEW
Session 455