Skip to main content
GET
/
v1
/
timeZones
/
{TimeZoneKey}
Get Time Zones by Time Zone Key
curl --request GET \
  --url https://qa-lynx.nayax.com/operational/v1/timeZones/{TimeZoneKey} \
  --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.

Path Parameters

TimeZoneKey
integer<int32>
required

The unique identifier (key) of the time zone to be retrieved.

Response

200 - application/json

The time zone associated with the specified key.

Represents detailed information about a time zone, including its identifiers, display names, offset, and geographical coordinates.

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.