How to access to user information in script Task

Hi Boneill,

In the case when you are looking for currently AuthenticatedUser:
https://www.flowable.org/docs/userguide/index.html#apiExpressions
authenticatedUserId: The id of the user that is currently authenticated. If no user is authenticated, the variable is not available.

In the other case use identity service to query for the user info. In the context of script task you can use
org.flowable.engine.impl.util.CommandContextUtil to get any service you want.

Regards
Martin