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