Retrieves the list of time zones with code and name.
URL
(GET) /api/settings/timezones/codes
(POST) /api/settings/timezones/codes
PARAMETERS
The method has no parameters.
Use the POST variant for Auto-completion and pagination.
RESULTS
The result is a JSON array with one element per country:
|
v |
The internal name/code of the time zone in English |
string |
|
t |
The print title of time zone with UTC offset details |
string |
EXAMPLES
List of time zones:
[
{
"v": "GMT Standard Time",
"t": "(UTC+00:00) Dublin, Édimbourg, Lisbonne, Londres"
},
{
"v": "Greenwich Standard Time",
"t": "(UTC+00:00) Monrovia, Reykjavik"
},
{
"v": "GTB Standard Time",
"t": "(UTC+02:00) Athènes, Bucarest"
},
{
"v": "Georgian Standard Time",
"t": "(UTC+04:00) Tbilissi"
},
...
]