Skip to main content
GET
/
v1
/
timeZones
Get Time Zones by Offset
curl --request GET \
  --url https://qa-lynx.nayax.com/operational/v1/timeZones \
  --header 'Authorization: <api-key>'
[
  {
    "TimeZoneKey": 123,
    "TimeZoneID": "<string>",
    "TimeZoneDisplayName": "<string>",
    "TimeZoneStandardName": "<string>",
    "TimeZoneDayLightName": "<string>",
    "TimeZoneOffset": 123,
    "CreatedDate": "2023-11-07T05:31:56Z",
    "LastUpdated": "2023-11-07T05:31:56Z",
    "DaylightSavingsBit": true,
    "Latitude": 123,
    "Longitude": 123
  }
]

Authorizations

Authorization
string
header
required

Enter your API key. It's required to authenticate API requests.

Query Parameters

TimeZoneOffset
number<double>

The time zone offset used to filter the time zones.

Response

200 - application/json

A list of time zones matching the specified offset.

TimeZoneKey
integer<int32> | null

The unique key identifier for the time zone.

TimeZoneID
string | null

The unique identifier string for the time zone.

TimeZoneDisplayName
string | null

The display name of the time zone, typically shown to users.

TimeZoneStandardName
string | null

The standard name of the time zone, used during non-daylight saving time.

TimeZoneDayLightName
string | null

The daylight saving time name of the time zone, used during daylight saving time.

TimeZoneOffset
number<double> | null

The time zone offset from Coordinated Universal Time (UTC), measured in hours.

CreatedDate
string<date-time> | null

The date and time when the time zone record was created.

LastUpdated
string<date-time> | null

The date and time when the time zone record was last updated.

DaylightSavingsBit
boolean | null

Indicates whether the time zone observes daylight saving time.

Latitude
number<double> | null

The latitude coordinate of the location associated with the time zone.

Longitude
number<double> | null

The longitude coordinate of the location associated with the time zone.