Skip to main content

Notifications

Community site session details

Community site session details

Session Id :
Power Pages - Customize & Extend
Answered

Grabbing user's profile information javascript

(0) ShareShare
ReportReport
Posted on by 108
I am trying to grab user's profile information (Like their email) for signed in user's in JavaScript, I tried {{ user.email }} but it's not working and I'm finding no documentation on how I can do this. any ideas?
Categories:
  • ZackS Profile Picture
    108 on at
    Grabbing user's profile information javascript
    That worked, for future references to anyone who might need it this is the code I did for the department and email: 
     
    var userEmail = "{{ user.emailaddress1 }}";
    var userDepartment = "{{ user.department }}";
     
    if (userEmail) {
      console.log("User Email:", userEmail);
      console.log("User Department:", userDepartment);
     
    } else {
      console.log("User is not signed in or the email is unavailable.");
    }
  • Verified answer
    Fubar Profile Picture
    7,762 Super User 2025 Season 1 on at
    Grabbing user's profile information javascript
    You need to look for the logical schema name of the field in question (is always lower case) in Dataverse "Email" is its display name not its schema name.   user.emailaddress1
     
    Edit: note: the {{..}} is Liquid code and runs server side it is not a JavaScript element, you can load it into a JavaScript variable when the page loads
    e.g. var userEmail = "{{ user.emailaddress1 }}";

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

🌸 Community Spring Festival 2025 Challenge 🌸

WIN Power Platform Community Conference 2025 tickets!

Markus Franz – Community Spotlight

We are honored to recognize Markus Franz as our April 2025 Community…

Kudos to the March Top 10 Community Stars!

Thanks for all your good work in the Community!

Leaderboard

#1
WarrenBelz Profile Picture

WarrenBelz 146,513 Most Valuable Professional

#2
RandyHayes Profile Picture

RandyHayes 76,287 Super User 2024 Season 1

#3
Pstork1 Profile Picture

Pstork1 65,681 Most Valuable Professional

Leaderboard

Featured topics