Category Filter
List App Catalogs
Returns a list of all app catalogs.
Parameter | Type | Description | Default value |
---|---|---|---|
order_by | String | Optional. Order the result by app catalog 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/appcatalogues/ 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/appcatalogues/?order_by:asc&page=1" |
HTTP Response:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
{ "count": 2, "next": null, "previous": null, "results": [ { "id": 1, "name": "app catalogue", "description": "ios app and group", "created_time": "2017-05-22T13:59:23.118Z", "apps_count": 3, "app_groups_count":1 }, ... ] } |