Skip to main content

registered_devices

Creates, updates, deletes, gets or lists a registered_devices resource.

Overview

Nameregistered_devices
TypeResource
Identra_id.users.registered_devices

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
deletedDateTimestring (date-time)Date and time when this object was deleted. Always null when the object hasn't been deleted. (pattern: ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectuser_id, directory_object_idConsistencyLevelDevices that are registered for the user. Read-only. Nullable. Supports $expand and returns up to 100 objects.
listselectuser_idConsistencyLevelDevices that are registered for the user. Read-only. Nullable. Supports $expand and returns up to 100 objects.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
directory_object_idstringThe unique identifier of directoryObject
user_idstringThe unique identifier of user
ConsistencyLevelstringIndicates the requested consistency level. Documentation URL: https://docs.microsoft.com/graph/aad-advanced-queries

SELECT examples

Devices that are registered for the user. Read-only. Nullable. Supports $expand and returns up to 100 objects.

SELECT
id,
deletedDateTime
FROM entra_id.users.registered_devices
WHERE user_id = '{{ user_id }}' -- required
AND directory_object_id = '{{ directory_object_id }}' -- required
AND ConsistencyLevel = '{{ ConsistencyLevel }}'
;