Category Filter
List all Apps
Returns a list of all the applications on a device.
Parameter | Type | Description | Default value |
---|---|---|---|
order_by | String | Optional. Order the result by application name. Use asc or desc | asc |
app_type | String | Optional. Values can be store, web or enterprise | |
platform | String | Optional. Values can be ios or android | |
page | Integer | Optional | 1 |
per_page | Integer | Optional | 100 |
curl
HTTP Request:
Shell Command:
1 2 3 4 5 6 7 8 9 10 11 |
GET https://<portal>.hexnodemdm.com/api/v1/applications/ Authorization: <api key> Content-Type: application/json Sample Post Data:- [{ "order_by":"asc", "app_type":"store", "platform":"ios", "page":1, "per_page":50, }] |
Shell Command:
1 |
curl -H "Authorization: <your API key>" "https://<portal>.hexnodemdm.com/api/v1/applications/?app_type=store" |
HTTP Response:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
{ "count": 34, "next": "https://<portal>.hexnodemdm.com/api/v1/applications/?page=23", "previous": https://<portal>.hexnodemdm.com/api/v1/applications/?page=1, "results": [ { "id": 8, "name": "Google Maps - Navigation & Transit", "identifier": "com.google.Maps", "platform": "ios", "version": "4.29.0", "bundle_size": 109497344, "description": "Google Maps makes navigating your world faster", "vendor": "Google, Inc.", "app_type": "store", "webapp_url": null, "license": "Free", "category": "Navigation", "price": "Free", "icon": "http://is1.mzstatic.com/image/thumb/Purple122/v4/1f/70/69/1f706921-c385-ffd7-b556-9f65d338a884/source/60x60bb.jpg", "average_user_rating": null }, ... ] } |