Hi Experts,
One of our clients are based on Australia. I have already changed the timezone of the tenant to “Australia/Sydney”. However, if I retrieve any data from search or use “now” in transform, it looks like it uses UTC rather than tenant timezone. Is there any smart way to make these things work on the tenant’s timezone because am having hard time working through this time zone issue as I have manipulate now as well when I use search or use “now” in LCS transforms.
Thank you.
The organization time zone setting directly influences several internal system tasks that run on a scheduled basis. One key example is the periodic nightly refresh, which executes at 8 PM EDT/EST based on your configured time zone.
If you need to update your org’s time zone, you can use the following API call (be sure to update your tenant URL accordingly):
http
CopyEdit
PATCH https://training-XXX.api.identitynow-demo.com/beta/org-config
[
{
"op": "replace",
"path": "/timeZone",
"value": "America/New_York"
}
]
Make sure to replace training-XXX
with your actual tenant domain.
Thank you for your reply.
I have already done that but it does not help in “now” expression in transform. As, now is still calculated as UTC now not Sydney, Aus now. I hope I make sense here.
Thanks.