How to display the FullName of entity Account for that specific user that is logged in?

0
Hello, As the title states, how do I display the FullName of a user that is logged in on the homepage? I've placed a dataview that uses a microflow as data source, but only returns '$currentUser', this displays only the username and not the full name of the user. Thanks, Joey
asked
1 answers
3

The attribute to display should be "FullName", Name is the attribute used as username.

You can retrieve this by retrieving //Administration.Account[id = $currentUser] in the datasource microflow instead of retrieving user

answered