Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Any Javascript API in Qlik Sense to get user information who have logged-in the Qlik Sense desktop applicaiton

Just I have tried to get user details from my custom visual/extension in Qlik Sense. Any possibility or JavaScript API to get the user details who have logged-in the Qlik Sense desktop application.

I have already tried the Global API - getAuthenticatedUser,  it returns only "{qReturn: "Personal\Me"}".But I need the user email-id.

var global = qlik.getGlobal();

    global.getAuthenticatedUser(function (reply) {

        console.log("reply",reply);

        console.log('User:', reply.qReturn);

    });

2 Replies
ErikWetterberg

Sorry, that's not available in Desktop.

Erik Wetterberg

Anonymous
Not applicable
Author

Any other suggestion or idea to get the logged-in user information from Qlik Sense via custom visuals.