SDM
sdm.Get version
Get the running software version
Request
| Method | Param | Value | Comment | Supported Versions |
|---|---|---|---|---|
| sdm.Get | property | version | Property name to get | >v1.8.50 |
{"jsonrpc":"2.0","id":1,"method":"sdm.Get","params":{"property":"version"}}Reply
| Result | Comment | |
|---|---|---|
| x.x.x | Version of sdm installed |
{"jsonrpc":"2.0","id":1,"result":"1.8.64"}sdm.Get activation
Get the activation status
Request
| Method | Param | Value | Comment | Supported Versions |
|---|---|---|---|---|
| sdm.Get | property | activation | Property name to get | >v1.8.50 |
{"jsonrpc":"2.0","id":1,"method":"sdm.Get","params":{"property":"activation"}}Reply
| Result | Key | Comment | Supported Versions |
|---|---|---|---|
| Trial | Deprecated >v1.8.70 | <v1.8.70 | |
| IsTrial | Is trial license is active? (deprecated >v1.8.70) | <v1.8.70 | |
| License | |||
| Channels | Allowed channels (unused)(deprecated >v1.8.70) | ||
| Devices | Allowed devices | ||
| Gracetime | Gracetime sdm runs with this license without online check | ||
| Exceed | Time exceed since last online license check | ||
| Valid | License if true, invalid if false | ||
| Expiration | Timestamp for fixed expiration licenses (defaults to 2000-01-01T00:00:00Z -> ignored) | >v1.8.72 | |
| Validation | Timestamp of last online validation | >v1.8.72 | |
| Refreshed | License online refreshed since last start. If false license infomation may be invalid |
{
"jsonrpc": "2.0",
"id": 1,
"result": {
"Trial": {
"IsTrial": false
},
"License": {
"Channels": 500,
"Devices": 500,
"Gracetime": 168,
"Exceed": 0.002686415741388889,
"Valid": true
"Expiration":"2000-01-01T00:00:00Z"
"Validation":"2021-09-10T16:47:08.452207569+02:00"
},
"Refreshed": true
}
}