Get session information

get/cas/sessions/{sessionId}

Get information about the specified session.

Request Samples

1

Response Samples

1[
2 {
3 "id": "4092f24d-15f1-4c2e-8a06-9cb616c1a392"
4 },
5 {
6 "uuid": "4092f24d-15f1-4c2e-8a06-9cb616c1a392"
7 },
8 {
9 "name": "SessionName"
10 },
11 {
12 "state": "connected"
13 },
14 {
15 "httpPort": 8080
16 },
17 {
18 "httpProtocol": "https"
19 },
20 {
21 "user": "User"
22 },
23 {
24 "owner": "Owner"
25 },
26 {
27 "provider": "User"
28 },
29 {
30 "idleTime": {
31 "hours": 0,
32 "minutes": 1,
33 "seconds": 2
34 }
35 },
36 {
37 "actionCount": 2
38 },
39 {
40 "activeAction": "getCASSessions"
41 },
42 {
43 "isIdle": false
44 },
45 {
46 "clientCount": 2
47 }
48]

Path Parameters

NameTypeRequiredDescription
sessionId
string
true

sessionId (UUID) of session.

Responses

StatusMeaningDescription
200OK

OK

Schema
404Not Found

Session not found in the server's session list.

Schema
410Gone

Unknown or expired session. The session is still in the server's session list, but the session is no longer running.

Schema