Is there an option to get the user timezone?
Page 1 / 1
Try this query:
{
me {
id
time_zone_identifier
}
users (ids:[29417812]) {
id
time_zone_identifier
}
}
It give the timezone for the current user and a specified user:
{
"data": {
"me": {
"id": "29417812",
"time_zone_identifier": "Europe/London"
},
"users": [
{
"id": "29417812",
"time_zone_identifier": "Europe/London"
}
]
},
...
}
Thanks David 🙂 🙂 🙂
Reply
Login to monday.com
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.