For the complete documentation index, see llms.txt. This page is also available as Markdown.

Timezone

API call to get information about all supported timezones for the specified locale.

API actions

API path: panel/timezone.


This is the only Admin Panel operation that requires no authentication and no permissions.

List timezones

post
/panel/timezone/list

List every time zone the platform supports, with localized descriptions.

This operation requires no authentication and no permissions.

Only zones under the Africa, America, Asia, Atlantic, Australia, Europe, Indian, and Pacific prefixes are returned, and only those for which a country code can be resolved. Verified live: 405 zones on the European platform.

Body
localestringRequired

Locale used for the description of each zone.

Example: en
Responses
200

Supported time zones

application/json
successbooleanRead-onlyOptional

true if request finished successfully.

Example: true
post/panel/timezone/list
POST /v2/panel/timezone/list HTTP/1.1
Host: api.eu.navixy.com
Content-Type: application/json
Accept: */*
Content-Length: 15

{
  "locale": "en"
}
{
  "success": true,
  "list": [
    {
      "zone_id": "America/Tijuana",
      "description": "Tijuana",
      "base_offset": -8,
      "dst_offset": 1,
      "country_code": "MX",
      "alt_ids": [
        "America/Ensenada",
        "America/Santa_Isabel"
      ]
    }
  ]
}

The zone_id value is the identifier used wherever the API accepts a time zone, including default_user_time_zone in service settings.

Errors

General types only.

Last updated

Was this helpful?