> For the complete documentation index, see [llms.txt](https://navixy.com/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://navixy.com/docs/navixy-api/panel-api/resources/timezone.md).

# Timezone

## API actions

API path: `panel/timezone`.

***

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

## List timezones

> 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.

```json
{"openapi":"3.1.0","info":{"title":"Navixy Admin Panel API","version":"1.2.0"},"tags":[{"name":"Timezone","description":"The platform-wide list of supported time zones. All resources under the /panel/timezone/ path."}],"servers":[{"url":"https://api.eu.navixy.com/v2","description":"Navixy production server on European platform"},{"url":"https://api.us.navixy.com/v2","description":"Navixy production server on American platform"},{"url":"https://api.me.navixy.com/v2","description":"Navixy production server on Middle East platform"}],"security":[],"paths":{"/panel/timezone/list":{"post":{"tags":["Timezone"],"summary":"List timezones","operationId":"timezoneList","description":"List every time zone the platform supports, with localized descriptions.\n\nThis operation requires no authentication and no permissions.\n\nOnly 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.","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["locale"],"properties":{"locale":{"type":"string","description":"Locale used for the `description` of each zone."}}}}}},"responses":{"200":{"description":"Supported time zones","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"`true` if request finished successfully.","readOnly":true},"list":{"type":"array","description":"Supported time zones, ordered by `zone_id`.","readOnly":true,"items":{"$ref":"#/components/schemas/TimeZone"}}}}}}},"400":{"description":"Bad request. The response body carries the API-level error code in `status.code`. Validation failures also include an `errors` array.","$ref":"#/components/responses/ResponseError"},"default":{"$ref":"#/components/responses/ResponseError"}}}}},"components":{"schemas":{"TimeZone":{"type":"object","description":"A supported time zone.","readOnly":true,"properties":{"zone_id":{"type":"string","description":"Time zone ID, used throughout the API wherever a time zone is accepted."},"description":{"type":"string","description":"Localized name of the zone, in the requested `locale`."},"base_offset":{"type":"number","description":"Standard offset from UTC in hours, excluding DST. May be negative and may be fractional, for example `5.5`."},"dst_offset":{"type":"integer","description":"Additional offset in hours applied while DST is in effect. `0` when the zone has no DST rules or is not currently observing them."},"country_code":{"type":"string","description":"ISO 3166-1 alpha-2 country code for the zone."},"alt_ids":{"type":"array","description":"Alternative IDs that resolve to the same zone. Omitted entirely when there are none.","items":{"type":"string"}}}}},"responses":{"ResponseError":{"description":"Error response object","content":{"application/json":{"schema":{"type":"object","properties":{"success":{"type":"boolean","description":"Always false."},"status":{"type":"object","description":"Error status. Present only when an error occurred.","properties":{"code":{"type":"integer","description":"An error code in this API (not a HTTP code)"},"description":{"type":"string","description":"An error description"}}},"errors":{"type":"array","description":"Per-parameter detail, returned with validation failures such as error code 7.","items":{"type":"object","properties":{"parameter":{"type":"string","description":"Name of the parameter that failed validation."},"error":{"type":"string","description":"What was wrong with it."}}}}}}}}}}}}
```

The `zone_id` value is the identifier used wherever the API accepts a time zone, including `default_user_time_zone` in [service settings](/docs/navixy-api/panel-api/resources/dealer/settings/service.md).

#### Errors

[General](/docs/navixy-api/user-api/backend-api/errors.md#error-codes) types only.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://navixy.com/docs/navixy-api/panel-api/resources/timezone.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
