DeviceRegisteredUsers
DeviceRegisteredUsers table for Azure AD data provider.
Table Specific Information
Select
Get the users of registered Devices in your Azure Active Directory. You can filter results by DeviceId and UserId.
- DeviceId supports the '=' and IN operators.
- UserId supports the '=' and IN operators.
For example, the following queries are processed server side:
SELECT * FROM DeviceRegisteredUsers WHERE DeviceId = '2b9c0347-9640-4ba4-bd2d-50965fb026e7'
SELECT * FROM DeviceRegisteredUsers WHERE UsersId IN (SELECT Id FROM Users)
Columns
Name | Type | Description |
DeviceId [KEY] | String | The Id of the Device. |
UserId [KEY] | String | The User Id of the user listed. |