Category Filter
List All Applications
Returns a list of all applications associated with the device.
Parameters | Type | Description | Default value |
---|---|---|---|
page | Integer | Optional | 1 |
per_page | Integer | Optional | 100 |
curl
HTTP Request:
Shell Command:
1 |
GET https://.hexnodemdm.com/api/v1/devices/{DEVICE_ID}/applications/?page=1 |
Shell Command:
1 |
curl -H "Authorization: " "https://.hexnodemdm.com/api/v1/devices/{DEVICE_ID}/applications/?page=1" |
HTTP Response:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
{ "count":110, "next":https://.hexnodemdm.com/api/v1/devices/{DEVICE_ID}/applications/?page=2, "previous":null, "results": [ { "id":1, "name": "Finder", "bundle_size": 41040668.0, "version": "12.3", "mandatory_app": false, "black_listed":false, "managed": true, "status": "Installed" "identifier": "com.apple.finder" }, ... ] } |