Timezones
Get all timezones
Section titled “ Get all timezones ” GET
v3/timezones
returns all supported account timezones.
[
{
"id": 1,
"timezone": "Eastern Time (US & Canada)",
"time_diff": "-05:00"
},
{
"id": 49,
"timezone": "UTC",
"time_diff": "+00:00"
},
{
"id": 103,
"timezone": "Kolkata",
"time_diff": "+05:30"
},
{
"id": 130,
"timezone": "Tokyo",
"time_diff": "+09:00"
},
{
"id": 140,
"timezone": "Sydney",
"time_diff": "+10:00"
}
]
The response contains all available timezones supported by the account.
Each timezone includes a unique id, timezone name, and UTC
offset in the time_diff field.
Common Timezone IDs
| ID | Timezone | UTC Offset |
|---|---|---|
| 49 | UTC | +00:00 |
| 47 | London | +00:00 |
| 60 | Paris | +01:00 |
| 86 | Moscow | +03:00 |
| 103 | Kolkata | +05:30 |
| 105 | New Delhi | +05:30 |
| 123 | Singapore | +08:00 |
| 130 | Tokyo | +09:00 |
| 140 | Sydney | +10:00 |
Use the returned timezone id when creating or updating people
through the People API.