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://<portal>.hexnodemdm.com/api/v1/devices/{DEVICE_ID}/applications/?page=1 |
Shell Command:
1 |
curl –H "Authorization: <your API key>" https://<portal>.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 |
{ "count":110, "next":https://<portal>.hexnodemdm.com/api/v1/devices/{DEVICE_ID}/applications/?page=2, "previous":null, "results": [ { "id":1, "name": "Apple Music", "bundle_size": 3371031, "version": "1.3", "black_listed":false, "managed": true, "status": "Installed" }, ... ] } |