Category Filter
Retrieve User Group Details
Get the details of a user group.
curl
HTTP Request:
1 |
GET https://<portal>.hexnodemdm.com/api/v1/usergroups/{USERGROUP_ID}/ |
Shell Command:
1 |
curl -H "Authorization:<your API key>" https://<portal>.hexnodemdm.com/api/v1/usergroups/{USERGROUP_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 |
{ "id": "groupname":"example" "description":"ios usergroup", "users":[ { "id": 1, "name":"neil", "email":"neil@hexnode.com", "domain": "local", "phoneno": "9878799678" } ], "policies":[ { "id": 1, "name":"ios mandatory policy", "version":3, "created_time": "2017-04-12T13:05:32.237Z" } ], "location_history":[ { "user_id" : 1, "user_name": "Randy Hall", "place_name": "Walnut, CA 91789, USA", "device_name": "OnePlusONE E1003", "last_location_time": "2017-03-29T02:15:05.175Z", "longitude": "-122.0638889", "latitude": "37.9063889" }, { "user_id": 2 "user_name": "Liz", "lplace_name": "Brisbane, QLD, Australia", "device_name": "XiaomiRedmi Note 4", "last_location_time": "2017-03-30T09:00:08.901Z", "longitude": "-27.470125", "latitude": "153.021072" } ] } |