Get Users' Sessions Log
Returns the array of records of users' sessions.
Request
Response
Field | Type | Description |
---|---|---|
endTime |
Integer |
The timestamp for the end of the session. |
expiredAt |
Integer |
The timestamp for the expected end of the session due to user’s inactivity. |
id |
String |
Record’s ID. |
login |
String |
User’s login. |
startTime |
Integer |
The timestamp for the beginning of the session. |
userId |
String |
User’s ID. |
Example
Request
-
Bash
-
JavaScript
-
NodeJS
-
Python
login=<...>
password=<...>
saymon_hostname=<...>
url=http://$saymon_hostname/node/api/users/session/log
curl -X GET $url -u $login:$password
let login = <...>
let password = <...>
let saymonHostname = <...>
let path = "/node/api/users/session/log";
let auth = "Basic " + btoa(login + ":" + password);
let headers = new Headers();
headers.append("Authorization", auth);
let requestOptions = {
method: "GET",
headers: headers
};
fetch(saymonHostname + path, requestOptions)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log("error", error));
let http = require('follow-redirects').http;
let fs = require('fs');
let login = <...>
let password = <...>
let saymonHostname = <...>
let path = '/node/api/users/session/log';
let auth = 'Basic ' + Buffer.from(login + ':' + password).toString('base64');
let options = {
'method': 'GET',
'hostname': saymonHostname,
'path': path,
'headers': {
'Authorization': auth
},
'maxRedirects': 20
};
let req = http.request(options, function (res) {
let chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk);
});
res.on("end", function (chunk) {
let body = Buffer.concat(chunks);
console.log(body.toString());
});
res.on("error", function (error) {
console.error(error);
});
});
req.end();
import requests
login = <...>
password = <...>
saymon_hostname = <...>
url = "http://" + saymon_hostname + "/node/api/users/session/log"
response = requests.request("GET", url, auth=(login, password))
print(response.text)