GET api/TimeZones

List all TimeZone

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of TimeZone
NameDescriptionTypeAdditional information
TimeZoneId

integer

None.

TimeZoneName

string

None.

TimeZoneCode

string

None.

IsActive

boolean

None.

CreatedDateTime

date

None.

LastUpdatedDateTime

date

None.

CreatedBy

integer

None.

LastModifiedBy

integer

None.

IsDeleted

boolean

None.

IsDaylightSavings

boolean

None.

offset

integer

None.

TimeZoneAbbr

string

None.

TimeZoneLoc

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "TimeZoneId": 1,
    "TimeZoneName": "sample string 2",
    "TimeZoneCode": "sample string 3",
    "IsActive": true,
    "CreatedDateTime": "2025-07-18T15:36:30.87896+00:00",
    "LastUpdatedDateTime": "2025-07-18T15:36:30.87896+00:00",
    "CreatedBy": 1,
    "LastModifiedBy": 1,
    "IsDeleted": true,
    "IsDaylightSavings": true,
    "offset": 1,
    "TimeZoneAbbr": "sample string 4",
    "TimeZoneLoc": "sample string 5"
  },
  {
    "TimeZoneId": 1,
    "TimeZoneName": "sample string 2",
    "TimeZoneCode": "sample string 3",
    "IsActive": true,
    "CreatedDateTime": "2025-07-18T15:36:30.87896+00:00",
    "LastUpdatedDateTime": "2025-07-18T15:36:30.87896+00:00",
    "CreatedBy": 1,
    "LastModifiedBy": 1,
    "IsDeleted": true,
    "IsDaylightSavings": true,
    "offset": 1,
    "TimeZoneAbbr": "sample string 4",
    "TimeZoneLoc": "sample string 5"
  }
]

application/xml, text/xml

Sample:
<ArrayOfTimeZone xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ClassLibraryITTF1">
  <TimeZone>
    <CreatedBy>1</CreatedBy>
    <CreatedDateTime>2025-07-18T15:36:30.87896+00:00</CreatedDateTime>
    <IsActive>true</IsActive>
    <IsDaylightSavings>true</IsDaylightSavings>
    <IsDeleted>true</IsDeleted>
    <LastModifiedBy>1</LastModifiedBy>
    <LastUpdatedDateTime>2025-07-18T15:36:30.87896+00:00</LastUpdatedDateTime>
    <TimeZoneAbbr>sample string 4</TimeZoneAbbr>
    <TimeZoneCode>sample string 3</TimeZoneCode>
    <TimeZoneId>1</TimeZoneId>
    <TimeZoneLoc>sample string 5</TimeZoneLoc>
    <TimeZoneName>sample string 2</TimeZoneName>
    <offset>1</offset>
  </TimeZone>
  <TimeZone>
    <CreatedBy>1</CreatedBy>
    <CreatedDateTime>2025-07-18T15:36:30.87896+00:00</CreatedDateTime>
    <IsActive>true</IsActive>
    <IsDaylightSavings>true</IsDaylightSavings>
    <IsDeleted>true</IsDeleted>
    <LastModifiedBy>1</LastModifiedBy>
    <LastUpdatedDateTime>2025-07-18T15:36:30.87896+00:00</LastUpdatedDateTime>
    <TimeZoneAbbr>sample string 4</TimeZoneAbbr>
    <TimeZoneCode>sample string 3</TimeZoneCode>
    <TimeZoneId>1</TimeZoneId>
    <TimeZoneLoc>sample string 5</TimeZoneLoc>
    <TimeZoneName>sample string 2</TimeZoneName>
    <offset>1</offset>
  </TimeZone>
</ArrayOfTimeZone>