πŸ•™Timezones

Groups API accepts timezone parameters as strings in the format defined by IANA TZarrow-up-right standart in English.

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

curl --location 'https://<DOMAIN>/xapi/v2/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"
    },
	.
	.
	.
]
circle-info

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?