Get Users' Sessions Log
Returns the array of records of users' sessions.
Request
HTTP Request
Permissions
Path parameters
No parameters required.
Query parameters
Parameter | Type | Description |
---|---|---|
from | Integer | A lower bound timestamp for session records. |
limit | Integer | The maximum number of retrieved records. |
skip | Integer | The number of records to be skipped, starting with the last record. |
to | Integer | An upper bound timestamp for the session records. |
Request body
The request body is empty.
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
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();