Category Filter
Create App Group
Create a group of apps.
| Argument | Type | Description | 
|---|---|---|
| name | String | Required. Name of the app group | 
| description | String | Optional | 
| apps | Array | Optional. IDs of the applications | 
curl
HTTP Request:
		
		
			
			
			
			
				
					
			
		
Shell Command:
		
		
			
			
			
			
				
					
			
		
| 
					 1 2 3 4 5 6 7 8 9 10  | 
						POST https://<portal>.hexnodemdm.com/api/v1/appgroups/ headers:- Authorization: <api key> Content-Type: application/json Sample Post Data:- [{ "name":"ios app catalogue", "description":"ios store free apps", "apps":[153],  }]  | 
					
Shell Command:
| 
					 1 2  | 
						curl  -H "Authorization: <your API key>" -H "Content-Type: application/json" -d '{  "name":" ios apps ","description":"  ios store free apps ","apps":[2,4,5]}' https://<portal>.hexnodemdm.com/api/v1/appgroups/ -X POST  | 
					
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" }, ... ] }  |