Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save chrisobriensp/104fa7ae4fbdfc30158099e36d4ef0a9 to your computer and use it in GitHub Desktop.
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
'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