Difference between revisions of "GetLoggedInUserInfo"

From AgileApps Support Wiki
imported>Aeric
imported>Aeric
 
Line 17: Line 17:
Map user = Functions.getLoggedInUserInfo();
Map user = Functions.getLoggedInUserInfo();
Logger.info(user, "UserInfo");
Logger.info(user, "UserInfo");
Logger.info(user.get("last_name", "UserInfo"));
Logger.info(user.get("last_name"), "UserInfo");
</syntaxhighlight>
</syntaxhighlight>

Latest revision as of 07:06, 5 September 2019

Functions.getLoggedInUserInfo()
Description
Retrieves information about a Logged in User via the Java API
In addition to the fields are listed in REST API:user Resource, this API returns the following:
Name Type Attribute Description Additional Information
locale Object Read Only Identifies the user's language and country code java.util.Locale
Syntax
Map<String,Object> Functions.getLoggedInUserInfo()
Return
Map containing user information
Example
Map user = Functions.getLoggedInUserInfo();
Logger.info(user, "UserInfo");
Logger.info(user.get("last_name"), "UserInfo");