
Announcements
Hi,
I need to create a Power App for my customer where he can search all users. Bassically a kind of a contacts search list which shows the firstname, lastname, telephone numbers etc.
Now I could ofcourse use the standard organization app template of Power Apps but here is the problem. I have a mandatory field called ipPhone in my Active Directory which I need. Unfortunately the Office 365 Users connector doesn't retrieve this field.
So I thought maybe I could create a SharePoint list with al the fields I need like Firstname, Lastname, mobile number etc and sync this every hour for instance.
My question is how can I retrieve the value from the ipPhone field in Power Automate.
Thanks in advance guys. Really appreciate..
Hi @ZSDennis
Try using the Graph API something like this
https://graph.microsoft.com/v1.0/users/{id | userPrincipalName}?$select=displayName,givenName,postalCode,identities
You can use the Office 365 Groups connector action step called Send an HTTP Request.
Thanks