GET statistics/devices/{deviceId}/applications?startDate={startDate}&endDate={endDate}
Gets the statistics for the device application usage.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| deviceId | The device identifier. |
Define this parameter in the request URI. |
| startDate | The start date for the query. |
Define this parameter in the request URI. |
| endDate | The end date for the query. |
Define this parameter in the request URI. |
Response Information
The statistics for the device application usage.
Response body formats
application/json, text/json
Sample:
{
"applicationUsageStatistics": [
{
"averageCellularDownloadedBytesPerDay": 1,
"averageCellularUploadedBytesPerDay": 2,
"averageForegroundTotalTimePerDay": 3,
"averageWifiDownloadedBytesPerDay": 4,
"averageWifiUploadedBytesPerDay": 5,
"packageName": "sample string 6",
"packageNameHash": "sample string 7",
"title": "sample string 8",
"totalCellularDownloadedBytes": 9,
"totalCellularUploadedBytes": 10,
"totalForegroundTotalTime": 11,
"totalWifiDownloadedBytes": 12,
"totalWifiUploadedBytes": 13
},
{
"averageCellularDownloadedBytesPerDay": 1,
"averageCellularUploadedBytesPerDay": 2,
"averageForegroundTotalTimePerDay": 3,
"averageWifiDownloadedBytesPerDay": 4,
"averageWifiUploadedBytesPerDay": 5,
"packageName": "sample string 6",
"packageNameHash": "sample string 7",
"title": "sample string 8",
"totalCellularDownloadedBytes": 9,
"totalCellularUploadedBytes": 10,
"totalForegroundTotalTime": 11,
"totalWifiDownloadedBytes": 12,
"totalWifiUploadedBytes": 13
}
],
"latestReceivedDate": "2020-05-15T17:03:27.6960553-03:00"
}