VueFlow
  1. Statistics
VueFlow
  • Vueron VueFlow Operation Manual
  • Mbembo
    • User
      • UserLogin
      • RefreshToken
    • Area
      • Stream Area Frame
    • Statistics
      • Get Zone Statistics
        GET
      • Get Zone Statistics Client
        GET
    • Event
      • Stream Event
    • AlarmLog
      • Get AlarmLog Count
      • Get AlarmLog List
  1. Statistics

Get Zone Statistics Client

GET
/api/v1/mbembo/stat/{{areaID}}/client/{{clientID}}
Mbembo/ZoneStatisticsmbembo
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET '{{dev_mbembo_url}}/api/v1/mbembo/stat/1/client/1?dates=2024-11-13T15:00:00Z&dates=2024-11-14T15:00:00Z&metric=avgtime&timeUnit=minute'
Response Response Example
Area Client 혼잡도 OK
{
    "trID": "202405271541001234",
    "resultCode": "0200",
    "resultMsg": "OK",
    "resultData": [
        {
            "time": "2024-05-27T06:41:00Z",
            "clientID": 1,
            "statType": "level1",
            "value": 123
        },
        {
            "time": "2024-05-27T06:41:00Z",
            "clientID": 2,
            "statType": "level2",
            "value": 456
        },
        {
            "time": "2024-05-27T06:42:00Z",
            "clientID": 1
            "statType": "level3",
            "value": 789
        },
    ]
}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params
dates
array[string]
required
Example:
["2024-11-13T15:00:00Z","2024-11-14T15:00:00Z"]
metric
enum<string> 
required
Allowed values:
levelCountlevelCountSumcongestionLevelpassingCountpassingCountSumavgTimeavgTimeAvgavgVelocity
Example:
avgtime
timeUnit
enum<string> 
required
Allowed values:
minutehourday
Example:
minute
Body Params application/x-www-form-urlencoded
object {0}

Responses

🟢200Success
application/json
Body
trID
string <YYYYMMDDhhmmssnnxxxx>
required
YYYYMMDDhhmmssminnnn
Example:
20250212174827129876
resultCode
enum<string> 
required
0200
Allowed values:
020014011429
resultMsg
string 
required
Request OK
errMsg
string  | null 
optional
Error Messsage if exists
cursor
string 
required
Encoded cursor information, generated by pagination only
resultData
array[object (ChartZoneStat) {4}] 
required
time
string <date-time>
required
Each time value corresponding to the lookup period
key
string 
required
key name based on the lookup item
metric
enum<string> 
required
Statistics lookup item
Allowed values:
levelCountlevelCountSumcongestionLevelpassingCountpassingCountSumavgTimeavgTimeAvgavgVelocity
value
integer 
required
The value of the lookup item
Modified at 2024-11-15 03:21:24
Previous
Get Zone Statistics
Next
Stream Event
Built with