New Structured OS Info in Device API
We’ve added much more granular detail for device operating system information to the /api/v0/devices
endpoints. After hearing some feedback regarding the device OS information field, we decided that it made sense to include the device operating system details as a nested object field in the Device schema. The new operating_system_details
property included in the device schema looks like this:
“operatingsystemdetails”: { “deviceid”: 11111, “platform”: “windows”, “name”: “Microsoft Windows 10 Enterprise Evaluation”, “codename”: “Microsoft Windows 10 Enterprise Evaluation”, “version”: “10.0.17763”, “build”: “17763”, “majorversion”: 10, “minorversion”: 0, “patchversion”: null, “ubr”: 1098, “release_id”: 1809 }
“operatingsystemdetails”: { “deviceid”: 11, “platform”: “darwin”, “name”: “Mac OS X”, “codename”: “Catalina”, “version”: “10.15.3”, “build”: “19D76”, “majorversion”: 10, “minorversion”: 15, “patchversion”: 3, “ubr”: null, “release_id”: null }
You can view the documentation for the devices endpoint here: https://kolidek2.readme.io/reference#get_devices-1
We hope that this is helpful, and we’d love to hear feedback or suggestions on this update!