Category Filter
Update App Group
Update a group of apps.
Argument | Type | Description |
---|---|---|
name | String | Required. Name of the app group |
description | String | Required. Description for the group |
apps | Integer array | Optional. IDs of the app |
curl
HTTP Request:
Shell Command:
1 2 3 4 5 6 7 8 9 10 |
PUT https://<portal>.hexnodemdm.com/api/v1/appgroups/{APPGROUP_ID}/ headers:- Authorization: <api key> Content-Type: application/json Sample Post Data:- [{ "name": "ios apps", "description":"ios free apps", "apps":[1,4,5], }] |
Shell Command:
1 |
curl -H "Authorization:<your API key>" -H "Content-Type: application/json" -d '{ "name": "ios apps","description":"ios free apps", "apps":[1,2,3]}' https://<portal>.hexnodemdm.com/api/v1/appgroups/{APPGROUP_ID}/ -X PUT |
HTTP Response:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
{ "id":1, "name": "ios apps", "description":" "ios free apps", "apps":[ { "id": 1, "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" }, ] } |