How can I represent an on-premises OU hierarchy in Entra ID?

0
0
Asked By VelvetMango42 On

I'm developing an integration for a client that currently imports users and departments from on-premises Active Directory. The existing process walks through the OU hierarchy and users, then recreates that organizational structure in a website.

The client wants to move the integration to Entra ID using Microsoft Graph, but Entra ID doesn't provide an equivalent tree of Organizational Units. I've considered using each user's department attribute, but that seems error-prone. I've also seen references to the "On-premises distinguished name" attribute, which may contain the original AD location. Is that value updated when a user is moved to another OU?

What's the most reliable way to represent or approximate the organizational hierarchy when integrating with Entra ID?

3 Answers

Answered By BrightCedar31 On

If the client still wants directory-based provisioning, ask them to define a synchronization process that updates the chosen attributes or groups whenever someone changes department. Entra ID doesn’t have a native OU tree to walk, so the integration has to consume one of those explicit representations instead of attempting to recreate the old traversal.

Answered By QuietPine7 On

If you need a hierarchy inside Entra ID, model it explicitly rather than trying to traverse OUs. For example, maintain groups for the relevant organizational levels, using consistent names such as Directorate, Department, Unit, and Team. Your integration can then read group membership and group metadata through Microsoft Graph.

User attributes such as department can work, but only if there is a process that reliably maintains them. The on-premises distinguished name is primarily a synchronization attribute and shouldn’t be treated as the authoritative organizational model, especially if the website needs a stable department ID or parent-child relationship.

Answered By CopperLark19 On

The best source is usually the client’s HR or organizational-data system, not Active Directory or Entra ID. HR should be able to provide stable organization IDs, parent organization IDs, names, and user assignments through an API or regularly generated file. Use that data to build the website hierarchy, and use Entra ID only to resolve users or authenticate them.

That avoids depending on OU placement or manually maintained user attributes, both of which can become inconsistent with the actual business structure.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.