Category Filter
List app data usage statistics
Returns the data usage statistics of apps associated with a device.
Parameter | Type | Description | Accepted values |
---|---|---|---|
range | Integer | Optional | Values ranging from 1 to 30 where 1 denotes today. |
startdate & enddate | Integer | Optional | Any date of the format mmddyyyy with a maximum difference of 90 days between ‘startdate’ and ‘enddate’. |
order_by | String | Optional | totalusage, wifidatausage, mobiledatausage. |
count | Integer | Optional | Values ranging from 1 to 20. |
curl
HTTP Request:
Shell Command:
1 |
GET https://<portal>.hexnodemdm.com/api/v1/devices/{DEVICE_ID}/datausage/appdatausage |
Shell Command:
1 |
curl -H "Authorization: <your API key>" https://<portal>.hexnodemdm.com/api/v1/devices/{DEVICE_ID}/datausage/appdatausage |
HTTP Response:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
{ appdatausage:[ { "name":"Google Maps" "Identifier":"com.google.maps" "totalusage":"691356" "wifidatausage":"345678" "mobiledatausage":"345678" }, { "name":"Google Lens" "Identifier":"com.google.lens" "totalusage":"691356" "wifidatausage":"345678" "mobiledatausage":"345678" } ] } |