Category Filter
Retrieve App Group Details
Get all the details of an app group.
curl
HTTP Request:
Shell Command:
1 |
GET https://<portal>.hexnodemdm.com/api/v1/appgroups/{APPGROUP_ID}/ |
Shell Command:
1 |
curl -H "Authorization: <your API key>" https://<portal>.hexnodemdm.com/api/v1/appgroups/{APPGROUP_ID}/ |
HTTP Response:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
{ "id": 1, "name": "Ios apps", "description": "ios store free apps", "created_time": "2017-05-22T13:59:23.118Z", "apps": [ { "id": 2, "name": "Google Chrome – The Fast and Secure Web Browser", "publisher": "Google, Inc.", "category": "Utilities", "price": "Free", "icon": "http://is5.mzstatic.com/image/thumb/Purple91/v4/c1/e9/48/c1e948b2-d0ad-feaa-4cea-fec3ead8c409/source/60x60bb.jpg" }, ... ] } |