DeviceRegisteredOwners
Maps device objects to their registered owners for tracking and management purposes.
Table Specific Information
Select
Get the owners of registered Devices in your Azure Active Directory. You can filter results by DeviceId and OwnerId.
- DeviceId supports the '=' and IN operators.
- OwnerId supports the '=' and IN operators.
For example, the following queries are processed server side:
SELECT * FROM DeviceRegisteredOwners WHERE DeviceId = '2b9c0347-9640-4ba4-bd2d-50965fb026e7'
SELECT * FROM DeviceRegisteredOwners WHERE OwnerId IN (SELECT Id FROM Groups)
Columns
Name | Type | Description |
DeviceId [KEY] | String | The unique identifier for the device, used to reference the specific registered device in Azure Active Directory. |
OwnerId [KEY] | String | The unique identifier for the user who owns the device, linking the device to its respective owner in Azure Active Directory. |