API Guide

Table Of Contents
HTTP response
codes
204
/api/SessionService/SessionConfiguration
GET method for SessionConfiguration
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
response body
{
"@odata.context": "/api/
$metadata#Collection(SessionService.SessionConfiguration)",
"@odata.count": 6,
"value": [
{
"@odata.type": "#SessionService.SessionConfiguration",
"SessionType": "GUI",
"MaxSessions": 6,
"SessionTimeout": 1320000,
"MinSessionTimeout": 60000,
"MaxSessionTimeout": 86400000,
"MinSessionsAllowed": 1,
"MaxSessionsAllowed": 6
},
{
"@odata.type": "#SessionService.SessionConfiguration",
"SessionType": "UniversalTimeout",
"MaxSessions": 0,
"SessionTimeout": 1320000,
"MinSessionTimeout": -1,
"MaxSessionTimeout": 86400000,
"MinSessionsAllowed": 0,
"MaxSessionsAllowed": 0
},
{
"@odata.type": "#SessionService.SessionConfiguration",
"SessionType": "API",
"MaxSessions": 100,
"SessionTimeout": 1320000,
"MinSessionTimeout": 60000,
"MaxSessionTimeout": 86400000,
"MinSessionsAllowed": 1,
"MaxSessionsAllowed": 100
},
{
"@odata.type": "#SessionService.SessionConfiguration",
"SessionType": "SSH",
"MaxSessions": 4,
"SessionTimeout": 1320000,
"MinSessionTimeout": 60000,
"MaxSessionTimeout": 1800000,
"MinSessionsAllowed": 1,
"MaxSessionsAllowed": 4
},
{
"@odata.type": "#SessionService.SessionConfiguration",
Session
395