Category Filter
List App Groups
Returns a list of all app groups.
Parameter | Type | Description | Default value |
---|---|---|---|
order_by | String | Optional. Order the result by app group name. Use asc or desc | asc |
page | Integer | Optional | 1 |
per_page | Integer | Optional | 100 |
curl
HTTP Request:
Shell Command:
1 2 3 4 5 6 7 8 9 |
GET https://<portal>.hexnodemdm.com/api/v1/appgroups/ Authorization: <api key> Content-Type: application/json Sample Post Data:- {[ "order_by":"asc", "page":1, "per_page":50, }] |
Shell Command:
1 |
curl -H "Authorization: <your API key>" https://<portal>.hexnodemdm.com/api/v1/appgroups/ |
HTTP Response:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
{ "count": 2, "next": null, "previous": null, "results": [ { "id": 1, "name": "app group1", "description": "hello", "created_time": "2017-05-22T13:59:23.118Z", "apps_count": 3 }, ... ] } |