v1
latestOpenAPI 3.1.02026-07-26294215839.4 KBList Timezones
Returns a paginated list of timezones available for use when creating or editing schedules. Supports OData-style filtering on the name field.
OAuth Scopes: scheduling:schedules, time_tracking
Query parameters
OData filter expression applied to the name field. Supported operators: eq (exact match), ne (exclude), and (combine clauses). Supported string functions: contains, startswith, endswith (all case-insensitive). Not supported: or, not, parenthesized grouping. Examples: name eq 'America/Denver', name ne 'UTC', contains(name, 'America'), startswith(name, 'US/'), endswith(name, 'York').
Sorting options. Supported sort fields: name (alphabetical), offset (numeric UTC offset). Example: name asc or offset desc
The starting page for pagination. Defaults to 1.
The number of items to be returned. Defaults to 100.
Response
A paginated list of timezones.
Example response
{
"data": [
{
"name": "America/Denver",
"offset": "-7:00"
}
]
}