In JiraSM (DataCenter), we have projects for different regions, but Customer profiles are defaulting to the time zone globally set at the JiraSM level (GMT). Is there a way to bulk-change the time zone for Customers in a specific project? Maybe a back-end change?
Thanks, All!
The TimeZoneService (https://docs.atlassian.com/software/jira/docs/api/9.4.0/com/atlassian/jira/timezone/TimeZoneService.html) will help you.
Thank you, Tim!
Sorry to be a bother, but how would I use this class - specifically the setUserDefaultTimeZone method - in a script(?) to bulk-change the time zones for the customers in just one project?
Thank you!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @timothy lee
in practise you have here 2 scenarios:
In the best case you don't have to make decisions for a timezone base on projects itself. This would require a mapping and might be sometime also inaccurate or you have to deal with edge-cases that people have access to multiple projects with different timezones. If the instance itself is also connected to active directory (which knows the user configured timezone and also language) then this could be re-used and would be more accurate.
Back to your scenario:
So looping through all users / projects, identify which users are in scope (customers and not agents!), have a mapping of project ABC needs Timezone XYZ, set the users timezone.
But if you are not familiar with such things, that can be too complicated.
So maybe a simple HTTP REST endpoint that takes a username and timezone (inside the endpoint, find the user, set timezone) would help as well and you can intercept this multiple times from whatever tool you prefer. Assuming here, that you know that user ABC needs timezone XYZ
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Recommended Learning For You
Level up your skills with Atlassian learning
Learning Path
Get the most out of Jira Service Management
Solve customer problems efficiently and deliver outstanding service experiences.
Learning Path
Adopt ITSM practices to deliver exceptional service
Become familiar with the principles and practices that drive ITSM. Then, learn how to configure and use Jira Service Management to implement them.
Atlassian Certified Associate
Jira Service Management Agent Essentials certification
Prove you know what's essential to providing efficient and resolution-focused service in Jira Service Management.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.