GET api/TimeZone/{id}

Get TimeZone by matching the provided id

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

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:45:56.636662+00:00",
  "LastUpdatedDateTime": "2025-07-18T15:45:56.636662+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:
<TimeZone xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ClassLibraryITTF1">
  <CreatedBy>1</CreatedBy>
  <CreatedDateTime>2025-07-18T15:45:56.636662+00:00</CreatedDateTime>
  <IsActive>true</IsActive>
  <IsDaylightSavings>true</IsDaylightSavings>
  <IsDeleted>true</IsDeleted>
  <LastModifiedBy>1</LastModifiedBy>
  <LastUpdatedDateTime>2025-07-18T15:45:56.636662+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>