Category Filter
Retrieve Device Details
Get the complete details about a specific device.
curl
HTTP Request:
Shell Command:
1 |
GET https://<portal>.hexnodemdm.com/api/v1/devices/{DEVICE_ID}/ |
Shell Command:
1 |
curl -H "Authorization: <your API key>" https://<portal>.hexnodemdm.com/api/v1/devices/{DEVICE_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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
{ "id": 1, "udid": "822b365f06614569", "platform": "iOS", "enrollment_status": "enrolled", "enrolled_time": "2017-04-10T06:06:02.076000Z", "agent_active": true, "lastreported": "2017-04-10T06:06:02.076000Z", "lastscanned": "2017-04-10T06:06:02.076000Z", "lastnotified": "2017-04-10T06:06:02.076000Z", "remarks": "successfully enrolled", "disenrolled_time": null, "location_tracking_disabled": true, "location_tracking_interval": 60, "lostmode": false, "last_location": "Wynnum Rd at Bulimba Creek", "latitude": "-27.4797261951427", "longitude": "153.109797270424", "last_location_time": "2017-04-10T06:06:02.076000Z" "user": { "id": 1, "name": "neil", "email": "neil@hexnode.com", "phoneno": null, "alternate_email": null }, "device" : { "device_name": " ipad", "description": "neils ipad", "os_version": "9.12", "os_name": "ios", "build_version": "32.3.A.0.376", "model_name": "iPhone 4S", "model": "MF266HN", "product_name": "iPhone4,1", "device_type": "smartphone", "manufacture": "Apple Inc", "serial_number": "CB5A2628BK", "device_capacity": 27.1856803894043, "available_device_capacity": 25.5329742431641, "used_device_capacity": 1.65270614624023, "battery_level": 44.999998807907, "imei_1": "01 353200 983934 8", "imei_2" : "456456456456", "phoneno_1" : "1234567890", "phoneno_2" : "1234567890", "modem_firmware_version": "5.2.00", "is_supervised": false, "is_kiosk":false, } "applications":[ { "id":1, "name": "Apple Music", "bundle_size": 3371031, "version": "1.3", "black_listed":false, "managed": true, "status": "Installed" }, { "id": 2, "name": "Maps", "bundle_size": null, "version": "9.49.2", "black_listed": false, "managed": false, "status": "Installed" } ], "policies":[ { "id":4, "name": "ios policy", "version": 4 } ], "location_history":[ { "long_name": "Wynnum Rd at Bulimba Creek", "reported_time": “2017-04-17T12:43:28.302Z'', "latitude": "-27.4797261951427", "longitude": "153.109797270424" }, ...h2 ] } |