Verwaltung von List&Label Reports.
Seitenverzeichnis:
Inhalt | ||||||
---|---|---|---|---|---|---|
|
...
reporting.report.read
Beschreibung
Gibt alle konfigurierten Reports zurück.
...
Codeblock | ||||
---|---|---|---|---|
| ||||
{ "method":"listlabelreporting.report.read", "params":{ "apikey":"24174j3tqj", "id": 4 }, "version":"2.0", "id": 1 } |
...
Codeblock | ||||
---|---|---|---|---|
| ||||
{ "method":"listlabelreporting.report.read", "params":{ "apikey":"24174j3tqj", "filter": { "description": "Report %" } }, "version":"2.0", "id": 1 } |
...
Wert | Typ | Beschreibung | Version |
---|---|---|---|
id | int | ID des Datenbankeintrages | ab Version 1.0 |
obj_id | int | ID des referenzierten Objektes | ab Version 1.0 |
description | string | Titel des Reports | ab Version 1.0 |
default_template | string | Standard-Vorlage des Reports | ab Version 1.0 |
query | string | SQL-Abfrage des Reports | ab Version 1.0 |
object_types | array | IDs der Objekttypen, welche den Report verwenden können | ab Version 1.0 |
...
...
reporting.report.create
Beschreibung
Legt einen neuen Report an.
...
Codeblock | ||||
---|---|---|---|---|
| ||||
{ "method":"listlabelreporting.report.create", "params":{ "apikey":"24174j3tqj", "data": { "obj_id":19, "description":"Report 1", "query":"SELECT * FROM ..." } }, "version":"2.0", "id": 1 } |
...
Wert | Typ | Version |
---|---|---|
current_date | string | ab Version 1.0 |
id | int | ab Version 1.0 |
message | string | ab Version 1.0 |
...
...
reporting.report.update
Beschreibung
Aktualisiert einen bestehenden Report.
...
Codeblock | ||||
---|---|---|---|---|
| ||||
{ "method":"listlabelreporting.report.update", "params":{ "apikey":"24174j3tqj", "id":4, "data": { "description":"Anschluss 1", "query":"SELECT * FROM ..." } }, "version":"2.0", "id": 1 } |
...
Wert | Typ | Version |
---|---|---|
current_date | string | ab Version 1.0 |
id | int | ab Version 1.0 |
message | string | ab Version 1.0 |
...
...
reporting.report.delete
Beschreibung
Löscht einen bestehenden Report.
...
Codeblock | ||||
---|---|---|---|---|
| ||||
{ "method":"listlabelreporting.report.delete", "params":{ "apikey":"24174j3tqj", "id":4 }, "version":"2.0", "id": 1 } |
...