I have an app that needs the employeeId field from Azure AD. I've set up a flow and passed the employeeId back to PowerApps, but I was hoping to find a way to do it with a direct connection from PowerApps. I've found documentation on the Office365 Users connection that says that you can select additional fields outside of the default ( https://docs.microsoft.com/en-us/connectors/office365users/). IntelliSense gives a {'$select': option on Office365Users.MyProfileV2().
I've created a button to do the following:
Set(varUserV2Select,Office365Users.MyProfileV2({'$select':"userPrincipalName,employeeId,displayName,mail,mailNickname"}))I can still only get to all of the default fields. I can't figure out how to get to employeeId. Is this even possible, or am I reading too much into the documentation?