Seitenverzeichnis:
shd.module_updater.read
Beschreibung
Auslesen einer selbst gebauten View.
Parameter
Keine
Rückgabewert
Wert | Typ | Version |
---|
- | array | ab Version 1.0 |
Beispiel
Beispielaufruf | Beispielantwort |
---|
{
"method": "shd.module_updater.read",
"params": {
"apikey": "24174j3tqj"
},
"id": 1,
"version": "2.0"
}
|
{
"jsonrpc": "2.0",
"result": {
{
"id": "1026",
"identifier": "bvg",
"title": "BVG",
"const": "C__MODULE__BVG",
"date_install": "2019-01-08 11:21:55"
},
{
"id": "1022",
"identifier": "livestatus",
"title": "Livestatus Client",
"const": "C__MODULE__LIVESTATUS",
"date_install": "2018-10-16 12:17:36"
},
{
"id": "1023",
"identifier": "smview",
"title": "SM-VIEW Client",
"const": "C__MODULE__SMVIEW",
"date_install": "2018-10-16 12:17:44"
},
{
"id": "1025",
"identifier": "smview_cable",
"title": "SM-VIEW Cable",
"const": "C__MODULE__SMVIEW_CABLE",
"date_install": "2019-01-08 11:19:41"
}
},
"id": null
}
|
shd.module_updater.update
Beschreibung
Aktualisiert die angegebenen Add-Ons.
Parameter
Parameter | Typ | Beschreibung | Version |
---|
modules | array | Array der zu aktualisierenden Module | ab Version 1.0 |
Rückgabewert
Wert | Typ | Version |
---|
message | string | ab Version 1.0 |
id | int | ab Version 1.0 |
current_date | string | ab Version 1.0 |
Beispiel
Beispielaufruf | Beispielantwort |
---|
{
"method": "shd.module_updater.update",
"params": {
"apikey": "24174j3tqj",
"modules": [
"smview_cable",
"smview_listlabel",
"smview_maps"
],
"debug": true,
"language": "en"
},
"id": 1,
"version": "2.0"
}
|
{
"jsonrpc": "2.0",
"result": {
"message": "module_updater.update.success",
"id": 0,
"current_date": "2019-01-10"
},
"id": null
}
|