/api/space/user-management/active-user-sessions
The following operations are supported on this resource:
GET /api/space/user-management/active-user-sessions (v1)
This API retrieves details about all logged in user sessions.
Access Control
The following capabilities are required to access this API:
"ViewUserSessions"
Example Usage
GET /api/space/user-management/active-user-sessionsContent Types
-
Produces content types:
application/vnd.net.juniper.space.user-management.active-user-sessions+xml;version=1
application/vnd.net.juniper.space.user-management.active-user-sessions+json;version=1 -
Sample Output XML:
<activeusersessions total="1" size="1"
<activeuser key="65859"
<sessionId>553358674B3BED5F58A0CB10C6DE4711</sessionId>
<sessionStartTime>Oct 9, 2012 4:39:30 PM</sessionStartTime>
<userIpAddr>192.168.27.10</userIpAddr>
<username>ramesh</username>
</activeuser>
</activeusersessions> -
Sample Output JSON:
{"activeusersessions":
{"@size":"1","@total":"1"
"activeuser":[{"@key":"65859",
"sessionId":"553358674B3BED5F58A0CB10C6DE4711",
"sessionStartTime":"Oct 9, 2012 4:39:30 PM",
"userIpAddr":"192.168.27.10",
"username":"ramesh"
}]
}}