> ## Documentation Index
> Fetch the complete documentation index at: https://devzone.nayax.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Time Zones by Offset

> Retrieves a list of time zones based on the specified time zone offset.



## OpenAPI

````yaml /openapi/lynx.yaml get /v1/timeZones
openapi: 3.0.1
info:
  title: Nayax Operational Lynx API
  version: v1
servers:
  - url: https://qa-lynx.nayax.com/operational
security:
  - Authorization: []
paths:
  /v1/timeZones:
    get:
      tags:
        - Lookups
      summary: Get Time Zones by Offset
      description: Retrieves a list of time zones based on the specified time zone offset.
      operationId: get-time-zones-by-offset
      parameters:
        - name: TimeZoneOffset
          in: query
          description: The time zone offset used to filter the time zones.
          schema:
            type: number
            format: double
      responses:
        '200':
          description: A list of time zones matching the specified offset.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TimeZoneInfo'
components:
  schemas:
    TimeZoneInfo:
      type: object
      description: >-
        Represents detailed information about a time zone, including its
        identifiers, display names, offset, and geographical coordinates.
      properties:
        TimeZoneKey:
          type: integer
          format: int32
          nullable: true
          description: The unique key identifier for the time zone.
        TimeZoneID:
          type: string
          nullable: true
          description: The unique identifier string for the time zone.
        TimeZoneDisplayName:
          type: string
          nullable: true
          description: The display name of the time zone, typically shown to users.
        TimeZoneStandardName:
          type: string
          nullable: true
          description: >-
            The standard name of the time zone, used during non-daylight saving
            time.
        TimeZoneDayLightName:
          type: string
          nullable: true
          description: >-
            The daylight saving time name of the time zone, used during daylight
            saving time.
        TimeZoneOffset:
          type: number
          format: double
          nullable: true
          description: >-
            The time zone offset from Coordinated Universal Time (UTC), measured
            in hours.
        CreatedDate:
          type: string
          format: date-time
          nullable: true
          description: The date and time when the time zone record was created.
        LastUpdated:
          type: string
          format: date-time
          nullable: true
          description: The date and time when the time zone record was last updated.
        DaylightSavingsBit:
          type: boolean
          nullable: true
          description: Indicates whether the time zone observes daylight saving time.
        Latitude:
          type: number
          format: double
          nullable: true
          description: >-
            The latitude coordinate of the location associated with the time
            zone.
        Longitude:
          type: number
          format: double
          nullable: true
          description: >-
            The longitude coordinate of the location associated with the time
            zone.
      additionalProperties: false
  securitySchemes:
    Authorization:
      type: http
      scheme: bearer
      description: Enter your Bearer token. It's required to authenticate API requests.

````