Hello @Tara Johanneson
Thank you for reaching out Microsoft Q&A platform.
I understand that you want to find hidden properties in Microsoft Entra user profiles, you can use Microsoft Graph API to retrieve the full set of attributes associated with a user. This includes both visible and hidden properties.
Custom attributes, such as extension attributes synced from on-premises to Azure AD, will not be directly visible in the Entra portal’s user profile UI. To access these attributes, you’ll need to use PowerShell or the Microsoft Graph API.
Try using the Microsoft Graph GET endpoint to retrieve the information.
GET https://graph.microsoft.com/v1.0/users/{user-id}
where {id}
is the user's unique identifier. This will return all properties of the user.
For additional information refer this Document: https://learn.microsoft.com/en-us/graph/api/resources/profile-example?view=graph-rest-beta
Hope this helps. Do let us know if you any further queries.