Category Filter
Retrieve Device Details
Get the complete details about a specific device.
curl
HTTP Request:
|
1 |
GET https://.hexnodemdm.com/api/v1/devices/{DEVICE_ID}/ |
Shell Command:
|
1 |
curl -H "Authorization: " https://.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 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 |
{ "id": 1, "udid": "00008110-0011102A1180401E", "platform": "ios", "owned_by": 2, "enrollment_status": "enrolled", "enrolled_time": "2026-04-07T07:05:34.846776Z", "agent_active": false, "lastreported": "2026-04-07T08:41:08.189859Z", "lastscanned": "2026-04-07T07:12:16.660258Z", "lastnotified": "2026-04-07T08:17:08.684897Z", "remarks": "Successfully Enrolled", "disenrolled_time": null, "location_tracking_disabled": true, "location_tracking_interval": 60, "lostmode": false, "last_location": null, "latitude": null, "longitude": null, "last_location_time": null, "user": { "id": 1, "name": "George", "email": null, "phoneno": null, "alternate_email": "georgewain615@gmail.com" }, "device": { "device_name": "iPad", "description": null, "os_version": "26.3", "os_name": "iOS", "build_version": "23D127", "model_name": "iPad mini", "model": "MK7M3HN", "product_name": "iPad14,1", "device_type": "tablet", "manufacture": "Apple Inc", "serial_number": "GPV964HJ23", "storage": null, "device_capacity": 64.0, "available_device_capacity": 46.550290432, "used_device_capacity": 17.449709568, "battery_level": 80, "imei_1": null, "imei_2": null, "phoneno_1": null, "phoneno_2": null, "meid": null, "modem_firmware_version": null, "is_supervised": true, "wifi_ssid": null, "wifi_mac": "20:15:82:0f:79:b4", "ipaddress": null, "iccid": null, "is_kiosk": false }, "network": { "wifi_ssid": null, "wifi_mac": "20:15:82:0f:79:b4", "ipaddress": null, "iccid": null, "imei_1": null, "imei_2": null, "phoneno_1": null, "phoneno_2": null, "ethernet_mac": null, "bluetooth_mac": "20:15:82:10:53:6f", "network_name": null, "local_host_name": null, "bluetooth_state": null, "bluetooth_discoverable_mode": null, "bluetooth_firm_version": null, "imsi_1": null, "is_roaming_sim_1": null, "imsi_2": null, "is_roaming_sim_2": null, "sim_carrier_network": null, "subscriber_carrier_network": null, "current_carrier_network": null, "carrier_setting_network": null, "roaming_enabled": false, "is_roaming": null, "international_data_roaming": null, "home_carrier": null, "home_country": null, "current_carrier": null, "current_country": null, "network_type": null, "last_connected_date": "2026-04-07", "ethernet_ip": null, "personal_hotspot_enabled": null, "subscriber_mcc": null, "subscriber_mnc": null, "current_mcc": null, "current_mcc2": null, "current_mnc": null, "current_mnc2": null, "iccid2": null, "current_carrier_network2": null, "subscriber_carrier_network2": null, "is_roaming_2": null, "win_phone_no_1": null, "win_imei_1": null, "win_imsi_1": null, "win_is_roaming_1": null, "win_phone_no_2": null, "win_imsi_2": null, "win_imei_2": null, "win_is_roaming_2": null, "win_associated_wifi_ssid": null, "win_associated_wifi_ip": null, "win_wifi_mac_add": null, "win_ethernet_mac_add1": null, "win_ethernet_mac_add2": null, "win_bluetooth_mac_add": null, "win_bluetooth_device_name": null, "public_ip_address": null }, "applications": [ { "id": 46, "name": "Hexnode UEM", "bundle_size": 56992768.0, "app_version": "8.4", "mandatory_app": false, "black_listed": false, "managed": true, "status": "Installed", "identifier": "com.hexnode.hexnodeMDM" } ], "policies": [ { "id": 39, "name": "sign out", "version": 1 } ], "locations": [], "asset_tag": null, "device_notes": null, "device_groups": [ { "id": 4, "name": "All iOS Devices" }, { "id": 6, "name": "All Non-Compliant Devices" }, { "id": 3, "name": "All Inactive Devices" } ] } |