Get All State History
Returns all state history records.
Request
HTTP Request
Path parameters
No parameters required.
Query parameters
Parameter | Type | Description |
---|---|---|
from | Integeroptional |
A lower-bound timestamp for state history records. |
limit | Stringoptional |
The maximum number of records to be retrieved. |
skip | Stringoptional |
The number of the first records to be skipped. |
to | Integeroptional |
An upper-bound timestamp for state history records. |
Request body
The request body is empty.
Response
Work in Progress
This topic is a work in progress and may be incomplete.
Examples
Request examples
let login = <...>
let password = <...>
let saymonHostname = <...>
let path = "/node/api/state-history";
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));
const http = require("http");
let login = <...>
let password = <...>
let saymonHostname = <...>
let path = "/node/api/state-history";
let auth = "Basic " + Buffer.from(login + ":" + password).toString("base64");
let options = {
"method": "GET",
"hostname": saymonHostname,
"headers": {
"Authorization": auth
},
"path": path
};
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();
Response example
[
{
"entityId": 1,
"entityType": 1,
"stateId": 1,
"timestamp": 1579267920651,
"entityName": "ROOT",
"entityClass": 1,
"skip": 0,
"id": "5e21b750308c3c66d64e071a"
},
{
"entityId": "5e21b85b308c3c66d64e07c8",
"entityType": 1,
"stateId": 1,
"timestamp": 1579268187090,
"entityName": "SAYMON Agent",
"entityClass": 2,
"skip": 2,
"id": "5e21b85b308c3c66d64e07cd"
},
...
]