# List time zones

Retrieves the list of all timezones supported by Databox, including their UTC offsets and IANA identifiers.

Endpoint: GET /v1/accounts/timezones
Version: v1
Security: x-api-key

## Response 200 fields (application/json):

  - `requestId` (string)
    Unique identifier for the request.
    Example: "b0eac937-c25c-47a5-bb7e-552f6b860458"

  - `status` (string)
    Indicates the status of the request.
    Example: "success"

  - `timezones` (array)
    List of supported time zones with their UTC offsets and IANA identifiers.

  - `timezones.offset` (string)
    UTC offset in ±HH:MM format.
    Example: "GMT+2"

  - `timezones.timezone` (string)
    IANA identifier for the time zone.
    Example: "Europe/Ljubljana"

## Response 401 fields (application/json):

  - `requestId` (string)
    Unique identifier for the request.
    Example: "b0eac937-c25c-47a5-bb7e-552f6b860458"

  - `status` (string)
    Indicates the status of the request.
    Example: "error"

  - `errors` (array)

  - `errors.code` (string,null)
    A machine-readable error code that identifies the type of error.
    Example: "invalid_input"

  - `errors.message` (string)
    A human-readable message explaining the error.
    Example: "The provided parameter is invalid."

  - `errors.field` (string)
    The name of the request field associated with the error, if applicable.
    Example: "datasetId"

  - `errors.type` (string)
    The category or context of the error, such as validation or permission.
    Example: "validation"


