How to get the current User time zone in an Apex class? September 5, 2013June 9, 2022Magulan Duraipandian UserInfo.getTimeZone() is used to get the current User time zone in an Apex class Sample Code:TimeZone tz = UserInfo.getTimeZone();System.debug( tz );