Category Filter
Retrieve Device Group Details
Get the details of a device group.
curl
HTTP Request:
Shell Command:
1 |
GET https://<portal>.hexnodemdm.com/api/v1/devicegroups/{DEVICEGROUP_ID}/ |
Shell Command:
1 |
curl -H "Authorization:<your API key>" https://<portal>.hexnodemdm.com/api/v1/devicegroups/{DEVICEGROUP_ID}/ |
HTTP Response:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
{ "id": 4, "groupname":"ios device group", “description”: “this is a group of ios devices”, "devices":[ { "id": 1, "name": "neil's ipad", “user_id”: 2, "user_name": "neil", "model_name": "iPhone 4S", "platform": "ios" }, ], "policy":[ { "id":3, "name":"android devices", "version": 5, "created_time": "2017-04-12T13:05:12.605Z" }, ... ], "locations":[ { "device_name": "Randy Hall", "place_name": "Wynnum Rd at Bulimba Creek", "reported_time": "2017-03-29T02:15:05.175Z", "longitude": "153.109797270424", "latitude": "-27.4797261951427" }, { "device_name": "XiaomiRedmi Note 4", "place_name": "Walnut, CA 91789, USA", "reported_time": "2017-03-30T09:00:08.901Z", "longitude": "-122.0638889", "latitude": "37.9063889" } ] } |