![]()
I’m unable to figure out what timezone Trello uses when sending data within their REST API. I don’t believe it is UTC (???).
![]()
I’m unable to figure out what timezone Trello uses when sending data within their REST API. I don’t believe it is UTC (???).
Update:
According to this post: What timezone are dates in API data? - #2 by FredericMalenfant due dates are usually sent in the timezone of the card creator.
If so, I’m not sure how to figure out the certain user’s timezone, I’ve checked out what a member object is: https://developer.atlassian.com/cloud/trello/rest/api-group-members/#api-members-id-get
But I’m can’t find a time related property.
It looks like we give you a timezoneInfo from /1/members/me?fields=prefs:
{
"id": "5589c3ea49b40cedc28cf70e",
"prefs": {
"timezoneInfo": {
"offsetCurrent": 300,
"timezoneCurrent": "CDT",
"offsetNext": 360,
"dateNext": "2022-11-06T07:00:00.000Z",
"timezoneNext": "CST"
}
}
}
Hello! Looks like the prefs only has the following response:
{
"id": "590dd1a42791fc4f370dacb0",
"prefs": {
"sendSummaries": true,
"minutesBetweenSummaries": 1,
"minutesBeforeDeadlineToNotify": 1,
"colorBlind": false,
"keyboardShortcutsEnabled": true,
"locale": "en-GB",
"privacy": {
"fullName": "public",
"avatar": "public"
}
}
}