Understanding Azure AD Custom User Attributes

Katie P 21 Reputation points
2021-06-14T01:28:23.307+00:00

I'm trying to add a new attribute to an Azure AD user called "External Id." I've added that custom attribute to External Identities User Flow, but having trouble understanding where that is stored when I collect that info?

What I'm really trying to accomplish is adding new fields to the Users Profile page... such as under Job Info or Contact Info. Is this possible??

Microsoft Security Microsoft Entra Microsoft Entra ID
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. AmanpreetSingh-MSFT 56,871 Reputation points Moderator
    2021-06-14T07:40:42.01+00:00

    Hi @Katie P · Thank you for reaching out.

    Custom attributes are not displayed on the user's profile page in the portal. You need to either use Graph API or PowerShell to see this attribute and its value.

    Graph API:

    Read more: https://learn.microsoft.com/en-us/graph/api/user-get?view=graph-rest-1.0&tabs=http

    PowerShell:

    • Get-AzureADUser -ObjectId object_id_of_the_user | select -ExpandProperty ExtensionProperty

    -----------------------------------------------------------------------------------------------------------

    Please "Accept the answer" if the information helped you. This will help us and others in the community as well.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.