Dec 01 2021 08:12 PM
I followed the blog below,
Here is my API endpoint.
https://graph.microsoft.com/beta/deviceManagement/manageddevices('1111-2222-3333-abc4-55aa55bb55')?$select=id,physicalMemoryInBytes
Here is the response,
{"@odata.context":"https://graph.microsoft.com/beta/$metadata#deviceManagement/managedDevices(id,physicalMemoryInBytes)...","id":"1111-2222-3333-abc4-55aa55bb55","physicalMemoryInBytes":0}
The expected response is 32GB (in bytes).
Can someone please help?
Dec 22 2021 03:17 AM - edited Dec 22 2021 03:22 AM
Have the same issue when using id, physicalMemoryInBytes. But.. If you use
?$select=hardwareinformation,physicalMemoryInBytes it does show it :)
"@odata.context": "https://graph.microsoft.com/beta/$metadata#deviceManagement/managedDevices(hardwareInformation,physi...",
"physicalMemoryInBytes": 34359738368,
"hardwareInformation": {
Jun 17 2022 04:50 AM
Jun 17 2022 07:34 AM
Jun 17 2022 10:19 AM