Forum Discussion
Extract telephoneNumber/businessPhones in Graph via PowerShell
- Jan 12, 2026
Some properties are considered "sensitive", so you might need additional permissions/admin roles to work with them. See for example this document: https://learn.microsoft.com/en-us/graph/api/resources/users?view=graph-rest-1.0#sensitive-actions
The other thing that comes to mind is to make sure to specifically request the property:
Get-MgUser -All -Property DisplayName,Id,businessPhones | select DisplayName,Id,businessPhones
Some properties are considered "sensitive", so you might need additional permissions/admin roles to work with them. See for example this document: https://learn.microsoft.com/en-us/graph/api/resources/users?view=graph-rest-1.0#sensitive-actions
The other thing that comes to mind is to make sure to specifically request the property:
Get-MgUser -All -Property DisplayName,Id,businessPhones | select DisplayName,Id,businessPhones