Timezones

Groups API accepts timezone parameters as strings in the format defined by IANA TZ standart in English.

To get all timezones, along with their strings, you can use the call below:

curl --location 'https://<DOMAIN>/xapi/session/timezones' \
--header 'Authorization: Bearer <ACCESS_TOKEN>''

Example Response:

[
    {
        "label": "(UTC+00:00) Dublin, Edinburgh, Lisbon, London",
        "value": "Europe/London"
    },
    {
        "label": "(UTC+00:00) Monrovia, Reykjavik",
        "value": "Africa/Abidjan"
    },
	.
	.
	.
]

You can use the value parameter as the timezone string when making calls.


If you don't want to make a call, you can find accepted timezone strings below:

Last updated

Was this helpful?