For the complete documentation index, see llms.txt. This page is also available as Markdown.

Managing Devices

Entra ID keeps a record of every device registered against it. These components let your flows read that inventory and clean it up — which matters, because device objects accumulate long after the hardware is gone.

List Devices

Returns the devices registered in Entra ID.

Besides an OData filter, this component has one input worth knowing: Stale For (Days). It narrows the result to devices that have not signed in for that many days, and includes devices that never signed in at all. That single setting is what turns a device list into a cleanup workflow.

See Working with the Connector for how the Output Type setting shapes what leaves the component.

Get Device

Returns a single device object with its details.

Add Device, Update Device, Delete Device

Standard create, update and delete operations on device objects.

Disable Device

Deactivates a device so it can no longer authenticate against Entra ID.

This is the recommended step before deleting anything. A disabled device stops being useful to an attacker immediately, but the object stays available if you turn out to need it — which is not true once you delete it.

A sensible cleanup pattern is therefore two-staged: disable first, wait out a grace period, then delete.

Was this helpful?