Differences

This shows you the differences between two versions of the page.

Link to this comparison view

en:d-sdk:7_reports:4_exec_report [2018/04/26 20:29]
support@geliossoft.ru created
en:d-sdk:7_reports:4_exec_report [2021/07/07 13:28]
Line 1: Line 1:
-FIXME **This page is not fully translated, yet. Please help completing the translation.**\\ //(remove this paragraph once the translation is finished)// 
  
-====== Execute Unit Report ====== 
-The request is intended to execute report on unit. 
- 
-=== Request Example === 
-<code php>&​svc=exec_report&​params={ 
-    "​id_unit":​ integer, 
-    "​from":​ timestamp, 
-    "​to":​ timestamp, 
-    "​report_type":​ string, 
-    "​language":​ string, 
-    "​id_group":​ integer, 
-    "​id_geozone":​ integer, 
-    "​id_report":​ integer 
-}</​code>​ 
- 
-=== Parameters === 
-^ Parameter ​  ^ Description ​  ^ 
-| id_unit | Unique Unit ID | 
-| from | Start time of report | 
-| to | End time of report | 
-| report_type | Report Type | 
-| language | Language | 
-| id_group | Unique Group ID | 
-| id_geozone | Unique Geozone ID | 
-| id_report | Unique Report ID | 
- 
-=== Additional Information === 
-Report_type('​unit_source'​ ⇒'​Initial Data', '​unit_movement'​ ⇒ '​Report on trips',​ '​unit_stay'​ ⇒ '​Report on parkings',​ '​unit_movement_stay'​ ⇒ '​Report on trips and parkings',​ '​unit_conn'​ ⇒ 'Lost Connection Report'​). 
- 
-Parameters id_route and id_geozone are optional. 
- 
-=== Server Response === 
-== Result == 
-<code php>{ 
-    "​page":​0,​ // Current Page  
-    "​total":​1, ​ 
-    "​records":​1,​ // Number of records 
-    "​headers":​[ // Report headers 
-        "​Начало",​ 
-        "​Начальное положение",​ 
-        "​Конец",​ 
-        "​Конечное положение",​ 
-        "​Длительность",​ 
-        "​Средн. скорость км/​ч",​ 
-        "​Макс. скорость км/​ч",​ 
-        "​Расстояние,​ км", 
-        "​Coord"​ 
-    ], 
-    "​rows":​[ // Report rows 
-        { 
-            "​Начало":"​Итого",​ 
-            "​Начальное положение":"",​ 
-            "​Конец":"",​ 
-            "​Конечное положение":"",​ 
-            "​Длительность":"​0:​00:​00",​ 
-            "​Средн. скорость км/​ч":"​0.0",​ 
-            "​Макс. скорость км/​ч":"​0",​ 
-            "​Расстояние,​ км":"​0.0"​ 
-        } 
-    ] 
-}</​code>​