getLoggedInUserInfo

From AgileApps Support Wiki
Revision as of 07:06, 5 September 2019 by imported>Aeric
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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");