Created
August 28, 2018 16:39
-
-
Save chrisobriensp/104fa7ae4fbdfc30158099e36d4ef0a9 to your computer and use it in GitHub Desktop.
PowerApps formula to call Azure Function via existing data source - in this case to UPDATE the user's profile data from Office 365
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'cob-gen-functions.azurewebsites.net'.apiUpdateUserDetailspost( | |
{ | |
userPrincipalName: lblUserEmail.Text, | |
displayName: txtDisplayName.Text, | |
jobTitle: txtJobTitle.Text, | |
mobilePhone: txtPhone.Text, | |
officeLocation: txtLocation.Text | |
} | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment