# Get supported time zones

This endpoint returns all time zones supported by the platform,
including UTC offsets, display names, and daylight saving information.
The data is served from the platform cache and does not require
any user or account context.
            
Use cases:

- Populate timezone dropdowns in user or account settings
- Display localized time information
- Validate timezone selections during profile updates

Endpoint: GET /api/v1/timezones

## Response 200 fields (text/plain):

  - `data` (array,null)

  - `data.timeZoneName` (string,null)

  - `data.utcOffset` (integer)

  - `data.timeZoneId` (integer)

  - `data.code` (string,null)

  - `data.supportsDaylightSavingTime` (boolean)

  - `data.daylightName` (string,null)

  - `message` (string,null)

  - `isError` (boolean)

  - `messageCode` (integer)

  - `status` (string,null)

  - `errorType` (string,null)

  - `traceid` (string,null)

  - `responseDescription` (string,null)


