request address/v3/statistics/get_device_stat_overview
Parameter Name | Required | Type | Description |
startDate | Yes | String | Query start date Format: YYYYMMDD Limit: only data in the last 3 months can be queried |
endDate | Yes | String | Query end date. Format: YYYYMMDD |
Parameter Name | Type | Description |
retCode | Integer | Returned status code |
errMsg | String | Error message |
getDeviceStatOverviewData | Array | Returned result, with getDeviceStatOverviewData structure variables shown in following table |
Parameter Name | Type | Description |
date | Integer | Data date |
accuUv | Integer | Accumulated devices |
newUv | Integer | Daily new devices |
activeUv | Integer | Daily peak of online devices |
{"startDate": "20190724","endDate": "20190726"}
{"retCode": 0,"errMsg": "","getDeviceStatOverviewData": [{"date": 20190724,"accuUv": 0,"newUv": 0,"activeUv": 0},{"date": 20190725,"accuUv": 0,"newUv": 5,"activeUv": 0},{"date": 20190726,"accuUv": 5,"newUv": 0,"activeUv": 2}]}
Was this page helpful?